public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Fix problem that alias can be defined or not depending on the order.
@ 2020-06-09  6:08 gdb-buildbot
  2020-06-09  6:08 ` Failures on Fedora-i686, branch master gdb-buildbot
                   ` (7 more replies)
  0 siblings, 8 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09  6:08 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 0605465feb51d7a8552db8019c5cfc8a5fc22c3f ***

commit 0605465feb51d7a8552db8019c5cfc8a5fc22c3f
Author:     Philippe Waroquiers <philippe.waroquiers@skynet.be>
AuthorDate: Tue May 5 21:38:38 2020 +0200
Commit:     Philippe Waroquiers <philippe.waroquiers@skynet.be>
CommitDate: Fri May 15 22:17:45 2020 +0200

    Fix problem that alias can be defined or not depending on the order.
    
    When an alias name starts with the name of another alias,
    GDB was accepting to define the aliases in one order (short first, long after),
    but refused it the other way around.
    
    So, fix the logic to recognise an already existing alias by using
    lookup_cmd_composition.
    
    Also, this revealed a bug in lookup_cmd_composition:
    when the searched command is a prefix command, lookup_cmd_composition
    was not returning the fact that a command was found even if the
    TEXT to parse was fully consumed.
    
    gdb/ChangeLog
    YYYY-MM-DD  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
    
            * cli/cli-cmds.c (alias_command): Check for an existing alias
            using lookup_cmd_composition, as valid_command_p is too strict
            and forbids aliases that are the prefix of an existing alias
            or command.
            * cli/cli-decode.c (lookup_cmd_composition): Ensure a prefix
            command is properly recognised as a valid command.
    
    gdb/testsuite/ChangeLog
    2020-05-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
    
            * gdb.base/alias.exp: Test aliases starting with a prefix of
            another alias.

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 30500f4a74..e5708da7d4 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,12 @@
+2020-05-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
+
+	* cli/cli-cmds.c (alias_command): Check for an existing alias
+	using lookup_cmd_composition, as valid_command_p is too strict
+	and forbids aliases that are the prefix of an existing alias
+	or command.
+	* cli/cli-decode.c (lookup_cmd_composition): Ensure a prefix
+	command is properly recognised as a valid command.
+
 2020-05-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
 
 	* unittests/help-doc-selftests.c: Rename to
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c
index c17521b1f6..8538fadd9c 100644
--- a/gdb/cli/cli-cmds.c
+++ b/gdb/cli/cli-cmds.c
@@ -1694,8 +1694,29 @@ alias_command (const char *args, int from_tty)
   /* ALIAS must not exist.  */
   std::string alias_string (argv_to_string (alias_argv, alias_argc));
   alias = alias_string.c_str ();
-  if (valid_command_p (alias))
-    error (_("Alias already exists: %s"), alias);
+  {
+    cmd_list_element *alias_cmd, *prefix_cmd, *cmd;
+
+    if (lookup_cmd_composition (alias, &alias_cmd, &prefix_cmd, &cmd))
+      {
+	const char *alias_name = alias_argv[alias_argc-1];
+
+	/* If we found an existing ALIAS_CMD, check that the prefix differ or
+	   the name differ.  */
+
+	if (alias_cmd != nullptr
+	    && alias_cmd->prefix == prefix_cmd
+	    && strcmp (alias_name, alias_cmd->name) == 0)
+	  error (_("Alias already exists: %s"), alias);
+
+	/* Check ALIAS differs from the found CMD.  */
+
+	if (cmd->prefix == prefix_cmd
+	    && strcmp (alias_name, cmd->name) == 0)
+	  error (_("Alias %s is the name of an existing command"), alias);
+      }
+  }
+
 
   /* If ALIAS is one word, it is an alias for the entire COMMAND.
      Example: alias spe = set print elements
diff --git a/gdb/cli/cli-decode.c b/gdb/cli/cli-decode.c
index d951ead1c9..78b8901084 100644
--- a/gdb/cli/cli-decode.c
+++ b/gdb/cli/cli-decode.c
@@ -1843,6 +1843,8 @@ lookup_cmd_composition (const char *text,
 
   cur_list = cmdlist;
 
+  text = skip_spaces (text);
+
   while (1)
     {
       /* Go through as many command lists as we need to,
@@ -1850,9 +1852,6 @@ lookup_cmd_composition (const char *text,
 
       prev_cmd = *cmd;
 
-      while (*text == ' ' || *text == '\t')
-	(text)++;
-
       /* Identify the name of the command.  */
       len = find_command_name_length (text);
 
@@ -1861,7 +1860,7 @@ lookup_cmd_composition (const char *text,
 	return 0;
 
       /* TEXT is the start of the first command word to lookup (and
-	 it's length is len).  We copy this into a local temporary.  */
+	 it's length is LEN).  We copy this into a local temporary.  */
 
       command = (char *) alloca (len + 1);
       memcpy (command, text, len);
@@ -1890,12 +1889,14 @@ lookup_cmd_composition (const char *text,
 	    }
 	  *prefix_cmd = prev_cmd;
 	}
-      if ((*cmd)->prefixlist)
+
+      text += len;
+      text = skip_spaces (text);
+
+      if ((*cmd)->prefixlist && *text != '\0')
 	cur_list = *(*cmd)->prefixlist;
       else
 	return 1;
-
-      text += len;
     }
 }
 
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index dda5b68473..820af44416 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
+
+	* gdb.base/alias.exp: Test aliases starting with a prefix of
+	another alias.
+
 2020-05-15  Gary Benson <gbenson@redhat.com>
 
 	* gdb.base/info-os.c (main): Add return statement.
diff --git a/gdb/testsuite/gdb.base/alias.exp b/gdb/testsuite/gdb.base/alias.exp
index be78d9e936..9a9557668e 100644
--- a/gdb/testsuite/gdb.base/alias.exp
+++ b/gdb/testsuite/gdb.base/alias.exp
@@ -116,3 +116,9 @@ gdb_test "show print elements" "Limit .* is 56\[.\]" "verify 56"
 
 gdb_test_no_output "set print max-elements 57"
 gdb_test "show print elements" "Limit .* is 57\[.\]" "verify 57"
+
+# Test aliases having a common prefix.
+gdb_test_no_output "alias abcd  = backtrace"
+gdb_test_no_output "alias abcde = backtrace"
+gdb_test_no_output "alias fghij = backtrace"
+gdb_test_no_output "alias fghi  = backtrace"


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

* Failures on Fedora-i686, branch master
  2020-06-09  6:08 [binutils-gdb] Fix problem that alias can be defined or not depending on the order gdb-buildbot
@ 2020-06-09  6:08 ` gdb-buildbot
  2020-06-09  6:19 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09  6:08 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        0605465feb51d7a8552db8019c5cfc8a5fc22c3f

Subject of commit:
        Fix problem that alias can be defined or not depending on the order.

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.table.gz>



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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2020-06-09  6:08 [binutils-gdb] Fix problem that alias can be defined or not depending on the order gdb-buildbot
  2020-06-09  6:08 ` Failures on Fedora-i686, branch master gdb-buildbot
@ 2020-06-09  6:19 ` gdb-buildbot
  2020-06-09  6:42 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09  6:19 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/3105

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

Commit tested:
        0605465feb51d7a8552db8019c5cfc8a5fc22c3f

Subject of commit:
        Fix problem that alias can be defined or not depending on the order.

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j
==============================================

*** Complete 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/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.gz>

You can 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/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.table.gz>



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

* Failures on Fedora-x86_64-m32, branch master
  2020-06-09  6:08 [binutils-gdb] Fix problem that alias can be defined or not depending on the order gdb-buildbot
  2020-06-09  6:08 ` Failures on Fedora-i686, branch master gdb-buildbot
  2020-06-09  6:19 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2020-06-09  6:42 ` gdb-buildbot
  2020-06-09  6:54 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09  6:42 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/3151

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

Commit tested:
        0605465feb51d7a8552db8019c5cfc8a5fc22c3f

Subject of commit:
        Fix problem that alias can be defined or not depending on the order.

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

*** 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: disassembling function main for non-Shared-Anonymous: no binary: 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 FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: 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=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.gz>

You can 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/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.table.gz>



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

* Failures on Fedora-x86_64-m64, branch master
  2020-06-09  6:08 [binutils-gdb] Fix problem that alias can be defined or not depending on the order gdb-buildbot
                   ` (2 preceding siblings ...)
  2020-06-09  6:42 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2020-06-09  6:54 ` gdb-buildbot
  2020-06-09  7:24 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09  6:54 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/3211

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

Commit tested:
        0605465feb51d7a8552db8019c5cfc8a5fc22c3f

Subject of commit:
        Fix problem that alias can be defined or not depending on the order.

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

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.multi/multi-arch-exec.exp: first_arch=1: selected_thread=1: follow_exec_mode=same: continue across exec that changes architecture
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j
==============================================

*** Complete 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/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.gz>

You can 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/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.table.gz>



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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2020-06-09  6:08 [binutils-gdb] Fix problem that alias can be defined or not depending on the order gdb-buildbot
                   ` (3 preceding siblings ...)
  2020-06-09  6:54 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2020-06-09  7:24 ` gdb-buildbot
  2020-06-09  7:41 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09  7:24 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/3047

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

Commit tested:
        0605465feb51d7a8552db8019c5cfc8a5fc22c3f

Subject of commit:
        Fix problem that alias can be defined or not depending on the order.

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

*** 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-native-extended-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.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-native-extended-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
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 -> 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 -> 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 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
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
==============================================

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

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

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

You can 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/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.table.gz>



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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2020-06-09  6:08 [binutils-gdb] Fix problem that alias can be defined or not depending on the order gdb-buildbot
                   ` (4 preceding siblings ...)
  2020-06-09  7:24 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2020-06-09  7:41 ` gdb-buildbot
  2020-06-09  8:41 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  2020-06-09  8:58 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  7 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09  7:41 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/3048

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

Commit tested:
        0605465feb51d7a8552db8019c5cfc8a5fc22c3f

Subject of commit:
        Fix problem that alias can be defined or not depending on the order.

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

*** 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
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 1st stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 1st stop: print j
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
==============================================

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

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

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

You can 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/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.table.gz>



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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2020-06-09  6:08 [binutils-gdb] Fix problem that alias can be defined or not depending on the order gdb-buildbot
                   ` (5 preceding siblings ...)
  2020-06-09  7:41 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2020-06-09  8:41 ` gdb-buildbot
  2020-06-09  8:58 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  7 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09  8:41 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/3060

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

Commit tested:
        0605465feb51d7a8552db8019c5cfc8a5fc22c3f

Subject of commit:
        Fix problem that alias can be defined or not depending on the order.

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

*** 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-native-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.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-native-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.gz>

You can 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/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.table.gz>



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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2020-06-09  6:08 [binutils-gdb] Fix problem that alias can be defined or not depending on the order gdb-buildbot
                   ` (6 preceding siblings ...)
  2020-06-09  8:41 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2020-06-09  8:58 ` gdb-buildbot
  7 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09  8:58 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/3058

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

Commit tested:
        0605465feb51d7a8552db8019c5cfc8a5fc22c3f

Subject of commit:
        Fix problem that alias can be defined or not depending on the order.

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

*** Diff to previous build ***
==============================================
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
==============================================

*** Complete 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/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.gz>

You can 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/06/0605465feb51d7a8552db8019c5cfc8a5fc22c3f//xfail.table.gz>



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

* Failures on Fedora-i686, 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-07-22  5:11 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-22  5:11 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/3529

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/Fedora-i686/cb/cbd7581f343d85b4216db2eefdf601f6d988062d/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/cb/cbd7581f343d85b4216db2eefdf601f6d988062d//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-21 18:16 [binutils-gdb] Various procfs.c cleanups gdb-buildbot
@ 2020-07-22  2:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-22  2:36 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/3528

Author:
        Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Commit tested:
        196535a69c8568342e62fdf5e3f5ade04470fd6a

Subject of commit:
        Various procfs.c cleanups

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

*** 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/Fedora-i686/19/196535a69c8568342e62fdf5e3f5ade04470fd6a//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/19/196535a69c8568342e62fdf5e3f5ade04470fd6a//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-21 13:34 [binutils-gdb] PR26132, ar creates invalid libraries for some targets with plugins enabled gdb-buildbot
@ 2020-07-21 21:24 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-21 21:24 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/3526

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/Fedora-i686/1e/1e92785005ce880a5fac9d022f05cdcff91c3091/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/1e/1e92785005ce880a5fac9d022f05cdcff91c3091//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-21  3:47 [binutils-gdb] Adjust gdb.mi/mi-sym-info.exp filename patterns gdb-buildbot
@ 2020-07-21  7:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-21  7:14 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/3523

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/Fedora-i686/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
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/Fedora-i686/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/Fedora-i686/16/160f8a8f32f5566077e4a4b13943bc7c70bc5da2//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-21  1:10 [binutils-gdb] Fix gdb.base/list-missing-source.exp on remote host gdb-buildbot
@ 2020-07-21  4:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-21  4:36 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/3522

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/Fedora-i686/4d/4d91c2a4677b90802c8d369190927921bf8ee97d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/4d/4d91c2a4677b90802c8d369190927921bf8ee97d//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-21  2:00 [binutils-gdb] Fixes for gdb.xml/tdesc-regs.exp gdb-buildbot
@ 2020-07-21  2:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-21  2:00 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/3521

Author:
        Sandra Loosemore <sandra@codesourcery.com>

Commit tested:
        87f83f20023bf366c14ec4e0fd307948d96caaee

Subject of commit:
        Fixes for gdb.xml/tdesc-regs.exp.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "thread apply 1 frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 frame apply 1 print "
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-i686/87/87f83f20023bf366c14ec4e0fd307948d96caaee//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-19 23:27 [binutils-gdb] Silence warnings about incompatible plugins gdb-buildbot
@ 2020-07-20 20:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-20 20:46 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/3519

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        13aa5ceb01cc94a0e617f397c0c5434fc22bb1e5

Subject of commit:
        Silence warnings about incompatible plugins.

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

*** 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 -> 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/Fedora-i686/13/13aa5ceb01cc94a0e617f397c0c5434fc22bb1e5//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-19 22:13 [binutils-gdb] Decouple inferior_ptid/inferior_thread(); dup ptids in thread list (PR 25412) gdb-buildbot
@ 2020-07-20 18:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-20 18:09 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/3518

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/Fedora-i686/39/3922b302645fda04da42a5279399578ae2f6206c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/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/Fedora-i686/39/3922b302645fda04da42a5279399578ae2f6206c//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19 21:37 [binutils-gdb] Don't write to inferior_ptid in aix-thread.c gdb-buildbot
@ 2020-07-20 15:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-20 15:34 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/3517

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        6dbdab44e57d21c895ef60246d0e7aadb3c076a4

Subject of commit:
        Don't write to inferior_ptid in aix-thread.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: continue &
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: info threads
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: 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/Fedora-i686/6d/6dbdab44e57d21c895ef60246d0e7aadb3c076a4//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6d/6dbdab44e57d21c895ef60246d0e7aadb3c076a4//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-20 12:58 [binutils-gdb] Don't write to inferior_ptid in ravenscar-thread.c gdb-buildbot
@ 2020-07-20 12:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-20 12:58 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/3516

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        2da4b788f7a80ed9589d0e8856584e9dfa2813ff

Subject of commit:
        Don't write to inferior_ptid in ravenscar-thread.c

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: fork child appears
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
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/Fedora-i686/2d/2da4b788f7a80ed9589d0e8856584e9dfa2813ff//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2d/2da4b788f7a80ed9589d0e8856584e9dfa2813ff//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19 19:47 [binutils-gdb] Don't write to inferior_ptid in windows-nat.c, part II gdb-buildbot
@ 2020-07-20 10:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-20 10:23 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/3515

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        50838d1be72ddd30e0b5f081933482424ae5a6b0

Subject of commit:
        Don't write to inferior_ptid in windows-nat.c, part II

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: continue &
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: info threads
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/50/50838d1be72ddd30e0b5f081933482424ae5a6b0//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/50/50838d1be72ddd30e0b5f081933482424ae5a6b0//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19 18:53 [binutils-gdb] Don't write to inferior_ptid in windows-nat.c, part I gdb-buildbot
@ 2020-07-20  7:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-20  7:49 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/3514

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        31ce04e9e0ce96e752e2c53dfad5881d24e9f080

Subject of commit:
        Don't write to inferior_ptid in windows-nat.c, part I

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/31/31ce04e9e0ce96e752e2c53dfad5881d24e9f080//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-19 17:33 [binutils-gdb] Don't write to inferior_ptid in go32-nat.c gdb-buildbot
@ 2020-07-20  5:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-20  5:23 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/3513

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        1ee1a363454d88a87ad2ade7530b2a7fb670021e

Subject of commit:
        Don't write to inferior_ptid in go32-nat.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: info threads
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1e/1ee1a363454d88a87ad2ade7530b2a7fb670021e//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1e/1ee1a363454d88a87ad2ade7530b2a7fb670021e//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19 17:15 [binutils-gdb] Don't write to inferior_ptid in fork-child.c gdb-buildbot
@ 2020-07-20  2:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-20  2:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/6d/6d350754a32007465f9adbc11b87339e4493b358/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: only child marked running
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
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/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
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/6d/6d350754a32007465f9adbc11b87339e4493b358//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19 16:03 [binutils-gdb] Don't write to inferior_ptid in bsd-kvm.c gdb-buildbot
@ 2020-07-20  0:11 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-20  0:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/5d/5d971d48b922afc1cfe3ba1798477473cfbd052e/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: only child marked running
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: info threads
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "print -"
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/5d/5d971d48b922afc1cfe3ba1798477473cfbd052e//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-19 21:36 [binutils-gdb] Don't write to inferior_ptid in btrace_fetch gdb-buildbot
@ 2020-07-19 21:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-19 21:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        86e57d1b233e15f7d72b39dbd381a7e5a9d1b026

Subject of commit:
        Don't write to inferior_ptid in btrace_fetch

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: 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/Fedora-i686/86/86e57d1b233e15f7d72b39dbd381a7e5a9d1b026//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-07-19 18:59 [binutils-gdb] Don't write to inferior_ptid in bsd-kvm.c gdb-buildbot
@ 2020-07-19 18:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-19 18:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        f2e1c129f8f0985ec80e6cf775cf3e4afbced6fa

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/Fedora-i686/f2/f2e1c129f8f0985ec80e6cf775cf3e4afbced6fa/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: only child marked running
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: info threads
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "print "
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-19 13:17 [binutils-gdb] Don't write to inferior_ptid in corelow.c gdb-buildbot
@ 2020-07-19 16:24 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-19 16:24 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        60db1b8565060f4bd2287b060ea9724c93289982

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

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
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-i686/60/60db1b8565060f4bd2287b060ea9724c93289982//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-07-19 13:51 [binutils-gdb] Don't write to inferior_ptid in darwin-nat.c gdb-buildbot
@ 2020-07-19 13:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-19 13:51 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/3507

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        fe7d6a8db01f2a71520578267df7cd2d780ececb

Subject of commit:
        Don't write to inferior_ptid in darwin-nat.c

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

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: only child marked running
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: info threads
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-19 11:28 [binutils-gdb] Don't write to inferior_ptid in gnu-nat.c gdb-buildbot
@ 2020-07-19 11:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-19 11:14 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/3506

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        975f8708de015fb2b813edbf8b714f4777c57a41

Subject of commit:
        Don't write to inferior_ptid in gnu-nat.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print "
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/97/975f8708de015fb2b813edbf8b714f4777c57a41//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/97/975f8708de015fb2b813edbf8b714f4777c57a41//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-19  8:38 [binutils-gdb] Don't write to inferior_ptid in go32-nat.c gdb-buildbot
@ 2020-07-19  8:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-19  8:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

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

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        1a20473059c7a088b9f3c4188c09976eebbc3ab4

Subject of commit:
        Don't write to inferior_ptid in go32-nat.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: info threads
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1a/1a20473059c7a088b9f3c4188c09976eebbc3ab4//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1a/1a20473059c7a088b9f3c4188c09976eebbc3ab4//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19  9:39 [binutils-gdb] Don't write to inferior_ptid in nto-procfs.c gdb-buildbot
@ 2020-07-19  6:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-19  6:03 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/3504

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/Fedora-i686/eb/ebe84f23d2f3c0cb145cc7b3acfb011a4c7df1c9/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/eb/ebe84f23d2f3c0cb145cc7b3acfb011a4c7df1c9//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-19  3:26 [binutils-gdb] Don't write to inferior_ptid in remote-sim.c gdb-buildbot
@ 2020-07-19  3:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-19  3:26 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/3503

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        191f02e59316d8ff15684d24e1c8f4d07b2dd582

Subject of commit:
        Don't write to inferior_ptid in remote-sim.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: only child marked running
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: info threads
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/19/191f02e59316d8ff15684d24e1c8f4d07b2dd582//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/19/191f02e59316d8ff15684d24e1c8f4d07b2dd582//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19  7:49 [binutils-gdb] Don't write to inferior_ptid in remote.c gdb-buildbot
@ 2020-07-19  0:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-19  0:49 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/3502

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        0ac553107c601cc9c4c340338e0fc7e0ce8375cc

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

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

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0a/0ac553107c601cc9c4c340338e0fc7e0ce8375cc//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0a/0ac553107c601cc9c4c340338e0fc7e0ce8375cc//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19  6:54 [binutils-gdb] Don't write to inferior_ptid in tracectf.c gdb-buildbot
@ 2020-07-18 22:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-18 22:14 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/3501

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        5233f39b8b999f2675fb9493149e878c281e1d60

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

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: info threads
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/52/5233f39b8b999f2675fb9493149e878c281e1d60//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/52/5233f39b8b999f2675fb9493149e878c281e1d60//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19  5:59 [binutils-gdb] Don't write to inferior_ptid in tracefile-tfile.c gdb-buildbot
@ 2020-07-18 19:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-18 19:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        087e161b3cd9a8626dc05ce1bdb8dfaf353a71b1

Subject of commit:
        Don't write to inferior_ptid in tracefile-tfile.c

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

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: only child marked running
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: fork child appears
FAIL -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/08/087e161b3cd9a8626dc05ce1bdb8dfaf353a71b1//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/08/087e161b3cd9a8626dc05ce1bdb8dfaf353a71b1//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19  5:22 [binutils-gdb] Don't write to inferior_ptid in procfs.c gdb-buildbot
@ 2020-07-18 17:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-18 17:01 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/7f/7fb43e53d57d5d1c47fad8a2dece7b90d20b3fd3/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: info threads
UNRESOLVED -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/7f/7fb43e53d57d5d1c47fad8a2dece7b90d20b3fd3//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19  3:50 [binutils-gdb] Don't write to inferior_ptid in infrun.c gdb-buildbot
@ 2020-07-18 14:25 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-18 14:25 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/3498

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/Fedora-i686/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 -> FAIL: gdb.base/fork-print-inferior-events.exp: print_inferior_events=off: follow_fork_mode=child: detach_on_fork=off: run
PASS -> FAIL: gdb.base/fork-print-inferior-events.exp: print_inferior_events=on: follow_fork_mode=child: detach_on_fork=off: run
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: fork child appears
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: kill child
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: kill parent
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: only child marked running
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: set print inferior-events off
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: fork child appears
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: info threads
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: kill child
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: kill parent
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: set print inferior-events off
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: fork child appears
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: info threads
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: kill child
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: kill parent
PASS -> UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: set print inferior-events off
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
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: 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
new FAIL: 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: 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
new FAIL: 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
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/18/18493a005acc8fbccbee4a2b767334eaaf636dd2//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-19  3:14 [binutils-gdb] Don't write to inferior_ptid in target.c gdb-buildbot
@ 2020-07-18 11:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-18 11:49 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/3497

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        a0776b131d7a154125fdc4d22b1dda967c790ae9

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

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-07-18  6:34 [binutils-gdb] Don't write to inferior_ptid in gdbarch-selftests.c, mock address_space too gdb-buildbot
@ 2020-07-18  6:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-18  6:34 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/3495

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        c5316fc6e634858a3821e612e613342da562e0b3

Subject of commit:
        Don't write to inferior_ptid in gdbarch-selftests.c, mock address_space too

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

*** 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/Fedora-i686/c5/c5316fc6e634858a3821e612e613342da562e0b3//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-18 13:48 [binutils-gdb] [gdb/testsuite] Move code from gdb_init to default_gdb_init gdb-buildbot
@ 2020-07-17 22:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-17 22:45 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/3492

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/Fedora-i686/a8/a8a566853a0fc7f57159e55436ff6f395e499568/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/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/Fedora-i686/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/Fedora-i686/a8/a8a566853a0fc7f57159e55436ff6f395e499568//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-17 20:08 [binutils-gdb] x86: also test alternative VMGEXIT encoding gdb-buildbot
@ 2020-07-17 20:08 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-17 20:08 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/3491

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        d27c357a5b83773054e85ff3ea5dbfe18b9dd3c0

Subject of commit:
        x86: also test alternative VMGEXIT encoding

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-18  5:41 [binutils-gdb] Fix TUI support checks in gdb.tui tests gdb-buildbot
@ 2020-07-17 17:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-17 17:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Sandra Loosemore <sandra@codesourcery.com>

Commit tested:
        581bea2c99751391fc49d104d5eacb85bfb63c96

Subject of commit:
        Fix TUI support checks in gdb.tui tests.

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

*** Diff to previous build ***
==============================================
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=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/58/581bea2c99751391fc49d104d5eacb85bfb63c96//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/58/581bea2c99751391fc49d104d5eacb85bfb63c96//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-18  2:49 [binutils-gdb] Remove unnecessary TUI declarations gdb-buildbot
@ 2020-07-17 14:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-17 14:51 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/3489

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        612f258a491539f36c618030cc558e83e7d58b4e

Subject of commit:
        Remove unnecessary TUI declarations

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/61/612f258a491539f36c618030cc558e83e7d58b4e//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/61/612f258a491539f36c618030cc558e83e7d58b4e//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-18  0:13 [binutils-gdb] gdb: check for partial symtab presence in dwarf2_initialize_objfile gdb-buildbot
@ 2020-07-17  9:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-17  9:33 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        efb763a5ea351f9d865cbe491909f03472ebf2d6

Subject of commit:
        gdb: check for partial symtab presence in dwarf2_initialize_objfile

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-07-17  6:58 [binutils-gdb] gdb/regformats: remove unused regformats/reg-*.dat gdb-buildbot
@ 2020-07-17  6:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-17  6:58 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/3486

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

Commit tested:
        2951f6c068f961a2ea1de892fc82cf0229af67da

Subject of commit:
        gdb/regformats: remove unused regformats/reg-*.dat

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

*** 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/Fedora-i686/29/2951f6c068f961a2ea1de892fc82cf0229af67da//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/2951f6c068f961a2ea1de892fc82cf0229af67da//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-17 22:40 [binutils-gdb] gdb, gdbserver: remove ARM regdat files gdb-buildbot
@ 2020-07-17  4:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-17  4:20 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/3485

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/Fedora-i686/7d/7d458ea516b58c98214406859d57965879019215/

*** 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/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/7d/7d458ea516b58c98214406859d57965879019215//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-17 21:27 [binutils-gdb] gdb/features: remove rx.xml from XMLTOC list gdb-buildbot
@ 2020-07-17  1:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-17  1:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

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

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/Fedora-i686/3a/3af96c0d99dedab49d2b82b730c74c27ce99bba4/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/3a/3af96c0d99dedab49d2b82b730c74c27ce99bba4//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-17 20:28 [binutils-gdb] Pass INTERNAL_GDBFLAGS when executing GDB gdb-buildbot
@ 2020-07-16 23:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-16 23:06 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/3483

Author:
        Keith Seitz <keiths@redhat.com>

Commit tested:
        43327b208ec6452c1a6accd40be965cdfa5c86a3

Subject of commit:
        Pass INTERNAL_GDBFLAGS when executing GDB

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

*** 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/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/Fedora-i686/43/43327b208ec6452c1a6accd40be965cdfa5c86a3//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/43/43327b208ec6452c1a6accd40be965cdfa5c86a3//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-17 19:51 [binutils-gdb] x86: Delete incorrect vmgexit entry in prefix_table gdb-buildbot
@ 2020-07-16 19:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-16 19:53 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/3482

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/Fedora-i686/6f/6fde587ff78a54b9e3bd70259de60cc5d7d8ced7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "thread apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 print -"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/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/Fedora-i686/6f/6fde587ff78a54b9e3bd70259de60cc5d7d8ced7//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-17 18:09 [binutils-gdb] [gdb/testsuite] Remove dependence on tcl_unknown gdb-buildbot
@ 2020-07-16 15:21 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-16 15:21 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        081e778cb855581fe63a9b26aa582900da5d1a8b

Subject of commit:
        [gdb/testsuite] Remove dependence on tcl_unknown

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

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-i686/08/081e778cb855581fe63a9b26aa582900da5d1a8b//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/08/081e778cb855581fe63a9b26aa582900da5d1a8b//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-17 17:29 [binutils-gdb] Update thread_control_state::trap_expected comments gdb-buildbot
@ 2020-07-16 12:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-16 12: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/3479

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/Fedora-i686/b2/b25e22fd1698b600310fc56f01b6005b5a3f6227/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
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/Fedora-i686/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/Fedora-i686/b2/b25e22fd1698b600310fc56f01b6005b5a3f6227//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-17 16:34 [binutils-gdb] gdb: Convert language la_lookup_symbol_nonlocal field to a method gdb-buildbot
@ 2020-07-16  9:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-16  9:57 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/3478

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

Commit tested:
        a78a19b15254de31c3d38b7e27469aaef0a30e97

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

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-17 15:40 [binutils-gdb] gdb: Convert language la_value_print_inner field to a method gdb-buildbot
@ 2020-07-16  7:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-16  7:20 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/3477

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

Commit tested:
        ebe2334ee6cb065d2a86688bc9558d62320dd459

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

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/eb/ebe2334ee6cb065d2a86688bc9558d62320dd459//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-17 13:46 [binutils-gdb] gdb: Convert language la_watch_location_expression field to a method gdb-buildbot
@ 2020-07-16  2:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-16  2:06 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/3475

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/Fedora-i686/f1/f16a9f57b50af64ccb9652d20cc934fc5e80cd20/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/f1/f16a9f57b50af64ccb9652d20cc934fc5e80cd20//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-15 23:31 [binutils-gdb] gdb: Convert language la_collect_symbol_completion_matches field to a method gdb-buildbot
@ 2020-07-15 23:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-15 23:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        7e56227dfffddbbb5b648c386c85345929fa0529

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

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

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7e/7e56227dfffddbbb5b648c386c85345929fa0529//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-15 20:55 [binutils-gdb] gdb: Convert language la_word_break_characters field to a method gdb-buildbot
@ 2020-07-15 20:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-15 20:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        53fc67f8b2663261810353ae8e4f9920ae7a1c56

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

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-07-15 15:40 [binutils-gdb] gdb: Convert language la_compute_program field to a method gdb-buildbot
@ 2020-07-15 15:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-15 15:40 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/3471

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

Commit tested:
        9a49ad8c522a1ce83645d477bf6ced574c3bf651

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

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "thread apply all print xxx"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply all print xxx"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9a/9a49ad8c522a1ce83645d477bf6ced574c3bf651//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9a/9a49ad8c522a1ce83645d477bf6ced574c3bf651//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-17  9:11 [binutils-gdb] gdb: Convert language la_class_name_from_physname field to a method gdb-buildbot
@ 2020-07-15 12:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-15 12:58 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/ef/eff93b4d48eb0e79b7879475bb47eec55dbb41be/

*** Diff to previous build ***
==============================================
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 -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ef/eff93b4d48eb0e79b7879475bb47eec55dbb41be//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-15 10:20 [binutils-gdb] Use macros for TUI window names gdb-buildbot
@ 2020-07-15 10:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-15 10:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        de54374205650be71237ce51ef7981d30ddd78dc

Subject of commit:
        Use macros for TUI window names

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: cmd complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-17  2:46 [binutils-gdb] Fix crash when exiting TUI with gdb -tui gdb-buildbot
@ 2020-07-15  7:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-15  7:42 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/a3/a350efd4fb368a35ada608f6bc26ccd3bed0ae6b/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
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 -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/a3/a350efd4fb368a35ada608f6bc26ccd3bed0ae6b//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-15  5:05 [binutils-gdb] Fix C-x 1 from gdb prompt gdb-buildbot
@ 2020-07-15  5:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-15  5:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        39ec04904ff172dd67fd43ed3720f26d854732bf

Subject of commit:
        Fix C-x 1 from gdb prompt

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-17  0:38 [binutils-gdb] Fix crash when TUI window creation fails gdb-buildbot
@ 2020-07-15  2:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-15  2:29 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/d2/d2d1ea20aef6ed97232280b5e15a52b8d7dc7b7d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply level 0 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print "
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/d2/d2d1ea20aef6ed97232280b5e15a52b8d7dc7b7d//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-16 12:22 [binutils-gdb] Add two missing return values in gdb.python/py-nested-maps.c gdb-buildbot
@ 2020-07-14 23:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-14 23:33 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/3464

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        c802e8a76c4eaa3a8a62d7dcfe7be98bf718a2f0

Subject of commit:
        Add two missing return values in gdb.python/py-nested-maps.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-16  7:10 [binutils-gdb] Really remove tic30-aout support gdb-buildbot
@ 2020-07-14 21:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-14 21:02 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a435742a7fb32f6320ce0e6074e2500e28378104

Subject of commit:
        Really remove tic30-aout support

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

*** 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/Fedora-i686/a4/a435742a7fb32f6320ce0e6074e2500e28378104//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-15 20:44 [binutils-gdb] xtensa: allow runtime ABI selection gdb-buildbot
@ 2020-07-14 18:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-14 18:35 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/3462

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/Fedora-i686/7a/7a77f1ac2c6f899faa39e8c0b42d4284d586c44e/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/7a/7a77f1ac2c6f899faa39e8c0b42d4284d586c44e//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-15 19:30 [binutils-gdb] gold, ld: Implement -z start-stop-visibility=... option gdb-buildbot
@ 2020-07-14 16:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-14 16:07 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/3461

Author:
        Roland McGrath <mcgrathr@google.com>

Commit tested:
        cae64165f47b64898c4f1982d294862cfae89a47

Subject of commit:
        gold, ld: Implement -z start-stop-visibility=... option.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: cmd complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-07-14  8:34 [binutils-gdb] Rewrite target_read_string gdb-buildbot
@ 2020-07-14  8:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-14  8:34 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/3458

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        670e35fad9c17e8e166c5a6260201eebcc2ba9e6

Subject of commit:
        Rewrite target_read_string

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

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 $$
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: cmd complete "b "
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: tab complete "b "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/67/670e35fad9c17e8e166c5a6260201eebcc2ba9e6//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/67/670e35fad9c17e8e166c5a6260201eebcc2ba9e6//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-15 13:14 [binutils-gdb] Remove read_memory_string gdb-buildbot
@ 2020-07-14  6:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-14  6:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        f5272a3bb3928e8e45a122c19aa72a00a23a9d4d

Subject of commit:
        Remove read_memory_string

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.multi/multi-kill.exp: continue processes
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 10: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 10: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 2: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 2: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 3: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 3: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 4: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 4: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 5: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 5: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 6: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 6: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 7: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 7: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 8: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 8: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 9: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 9: switch to inferior
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-15  7:33 [binutils-gdb] gdb/testsuite: fix minor things in jit tests gdb-buildbot
@ 2020-07-14  3:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-14  3:35 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/3456

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/Fedora-i686/ff/ff08abb8a2cdb449314b68ebc6ba8edf475fb415/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
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 1: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
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
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ff/ff08abb8a2cdb449314b68ebc6ba8edf475fb415//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-15  6:22 [binutils-gdb] Obsolete PowerPC PE, winnt and cygwin targets gdb-buildbot
@ 2020-07-14  1:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-14  1:03 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        40be168cc419152df5cfae01caae415f52ffb4de

Subject of commit:
        Obsolete PowerPC PE, winnt and cygwin targets

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-14 16:01 [binutils-gdb] Handle Windows drives in rbreak paths gdb-buildbot
@ 2020-07-13 20:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-13 20:12 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        2c074f49026acbe0597e0d2d2f7385195dcac565

Subject of commit:
        Handle Windows drives in rbreak paths

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

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2c/2c074f49026acbe0597e0d2d2f7385195dcac565//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2c/2c074f49026acbe0597e0d2d2f7385195dcac565//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-14 12:51 [binutils-gdb] x86: Correct xsusldtrk mnemonic gdb-buildbot
@ 2020-07-13 16:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-13 16:49 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/3452

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/Fedora-i686/ef/efe30057d2fcf875e39efbe6cc2a6271decbbd2e/

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ef/efe30057d2fcf875e39efbe6cc2a6271decbbd2e//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-13  4:15 [binutils-gdb] gdb: mention removed GDBserver host support in NEWS gdb-buildbot
@ 2020-07-13  6:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-13  6:05 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/3450

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/Fedora-i686/6a/6a17d503c45b69dbf92c4c2a1aa2148db458c6b1/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
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 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 -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/6a/6a17d503c45b69dbf92c4c2a1aa2148db458c6b1//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-13  2:25 [binutils-gdb] gdbserver: remove support for Tile gdb-buildbot
@ 2020-07-13  1:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-13  1:02 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/96/96c16e2b7f47c301912ac92f53b756e26ef44ffb/

*** 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/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/Fedora-i686/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/Fedora-i686/96/96c16e2b7f47c301912ac92f53b756e26ef44ffb//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-13  0:15 [binutils-gdb] gdbserver: remove support for CRIS gdb-buildbot
@ 2020-07-12 20:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-12 20:02 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/3446

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/Fedora-i686/7b/7b46bf6f83c444ac84b3b88ebd89a8dae0de2f37/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/7b/7b46bf6f83c444ac84b3b88ebd89a8dae0de2f37//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-12 23:20 [binutils-gdb] gdbserver: remove support for Blackfin gdb-buildbot
@ 2020-07-12 17:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-12 17:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        1fa29f56baa741dd9a9238cf848927a7a7d83d6d

Subject of commit:
        gdbserver: remove support for Blackfin

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

*** 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/Fedora-i686/1f/1fa29f56baa741dd9a9238cf848927a7a7d83d6d//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1f/1fa29f56baa741dd9a9238cf848927a7a7d83d6d//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-12 22:44 [binutils-gdb] gdbserver: remove support for Neutrino gdb-buildbot
@ 2020-07-12 15:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-12 15:05 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/3444

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

Commit tested:
        613f149a90d6fc32a5a6ff47e0325f762cb07424

Subject of commit:
        gdbserver: remove support for Neutrino

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/61/613f149a90d6fc32a5a6ff47e0325f762cb07424//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/61/613f149a90d6fc32a5a6ff47e0325f762cb07424//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-12 21:48 [binutils-gdb] gdbserver: remove support for LynxOS gdb-buildbot
@ 2020-07-12 12:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-12 12:36 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/3443

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/Fedora-i686/fd/fdb95bf546c7ea42fc61bed73bacd04ef237aa1a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/fd/fdb95bf546c7ea42fc61bed73bacd04ef237aa1a//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-12 17:19 [binutils-gdb] [gdbserver] Fix Wlto-type-mismatch for debug_agent gdb-buildbot
@ 2020-07-12  7:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-12  7:35 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/3441

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

Commit tested:
        8118159c69a957292ce701b3d2937f19a0d0f973

Subject of commit:
        [gdbserver] Fix Wlto-type-mismatch for debug_agent

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/81/8118159c69a957292ce701b3d2937f19a0d0f973//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/81/8118159c69a957292ce701b3d2937f19a0d0f973//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-12 13:51 [binutils-gdb] gdb/testsuite: Prevent globals leaking between test scripts gdb-buildbot
@ 2020-07-12  5:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-12  5:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        a29d5112814e7a6744f03bddfe6756e2aa5e7a50

Subject of commit:
        gdb/testsuite: Prevent globals leaking between test scripts

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

*** 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/Fedora-i686/a2/a29d5112814e7a6744f03bddfe6756e2aa5e7a50//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-12 12:11 [binutils-gdb] [gdb/testsuite] Don't leak tuiterm.exp spawn override gdb-buildbot
@ 2020-07-12  2:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-12  2:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

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

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/Fedora-i686/8c/8c74a764f2cf5ea5e6997e35ba0f755fe2c09889/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/8c/8c74a764f2cf5ea5e6997e35ba0f755fe2c09889//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-12  7:55 [binutils-gdb] [gdb/testsuite] Don't abort testrun for invalid command in test-case gdb-buildbot
@ 2020-07-12  0:11 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-12  0:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/26/26783bce15adc0316f9167a216519cebcf1ccac3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "thread apply all print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply all print "
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/26/26783bce15adc0316f9167a216519cebcf1ccac3//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-11 21:41 [binutils-gdb] RISC-V: Update the rebuild-csr-xml.sh gdb-buildbot
@ 2020-07-11 21:41 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-11 21:41 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/3437

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

Commit tested:
        453c733fcf74893b5907f935283976c11cd46ad5

Subject of commit:
        RISC-V: Update the rebuild-csr-xml.sh.

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

*** Diff to previous build ***
==============================================
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.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/45/453c733fcf74893b5907f935283976c11cd46ad5//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/45/453c733fcf74893b5907f935283976c11cd46ad5//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-11 19:12 [binutils-gdb] RISC-V: Drop the privileged spec v1.9 support gdb-buildbot
@ 2020-07-11 19:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-11 19:12 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        d8af286fffa664a4399be2f4f157d2425c50acf1

Subject of commit:
        RISC-V: Drop the privileged spec v1.9 support.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-11 17:19 [binutils-gdb] Fix hex floating point lexing gdb-buildbot
@ 2020-07-11 16:41 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-11 16:41 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/3435

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/Fedora-i686/2b/2b4e6a3f4b66284556254f548716c7b21b93524a/

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2b/2b4e6a3f4b66284556254f548716c7b21b93524a//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-11 14:13 [binutils-gdb] gdb: add mailing list and IRC information to --help gdb-buildbot
@ 2020-07-11 14:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-11 14:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Jonny Grant <jg@jguk.org>

Commit tested:
        4412332f4b3a4ec570c378ff98ec671dd83a2959

Subject of commit:
        gdb: add mailing list and IRC information to --help

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

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/44/4412332f4b3a4ec570c378ff98ec671dd83a2959//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/44/4412332f4b3a4ec570c378ff98ec671dd83a2959//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-11 14:10 [binutils-gdb] Compute proper length for dynamic types of TYPE_CODE_TYPEDEF gdb-buildbot
@ 2020-07-11 11:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-11 11:45 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/3433

Author:
        Keith Seitz <keiths@redhat.com>

Commit tested:
        2f33032a93f24ccc0c0d2f23e2a3ec0442f638d4

Subject of commit:
        Compute proper length for dynamic types of TYPE_CODE_TYPEDEF

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2f/2f33032a93f24ccc0c0d2f23e2a3ec0442f638d4//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2f/2f33032a93f24ccc0c0d2f23e2a3ec0442f638d4//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-11 13:16 [binutils-gdb] [gdb/testsuite] Make gdb.base/dbx.exp more robust gdb-buildbot
@ 2020-07-11  9:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-11  9:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        a8baf0a32b8f8fe151762c6c0136fef4bae2facd

Subject of commit:
        [gdb/testsuite] Make gdb.base/dbx.exp more robust

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

*** 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/Fedora-i686/a8/a8baf0a32b8f8fe151762c6c0136fef4bae2facd//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-07-11  6:44 [binutils-gdb] [PATCH]: aarch64: Refactor representation of system registers gdb-buildbot
@ 2020-07-11  6:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-11  6:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        14962256b310efddf677ff4f5c9fa41047f48c39

Subject of commit:
        [PATCH]: aarch64: Refactor representation of system registers

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

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/14/14962256b310efddf677ff4f5c9fa41047f48c39//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/14/14962256b310efddf677ff4f5c9fa41047f48c39//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-11  4:12 [binutils-gdb] PR26107, Compilation failure in pdp11.c gdb-buildbot
@ 2020-07-11  4:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-11  4:12 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/3430

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        f0aa30258af17ab0234951cbf9644837a99036e5

Subject of commit:
        PR26107, Compilation failure in pdp11.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-11  5:27 [binutils-gdb] asan: readelf: process_mips_specific buffer overflow gdb-buildbot
@ 2020-07-11  1:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-11  1:43 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/3429

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        d0c4e7802dae311d71059d0e2114150a5e09acf1

Subject of commit:
        asan: readelf: process_mips_specific buffer overflow

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

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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/Fedora-i686/d0/d0c4e7802dae311d71059d0e2114150a5e09acf1//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-11  2:14 [binutils-gdb] ia64: Set DF_TEXTREL instead of reltext gdb-buildbot
@ 2020-07-10 23:11 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-10 23:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/44/447f6d86275aa5790109c2dfd85f3a11919fff8f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/44/447f6d86275aa5790109c2dfd85f3a11919fff8f//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-10 15:07 [binutils-gdb] [gdb/symtab] Enable ada .gdb_index gdb-buildbot
@ 2020-07-10 20:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-10 20:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

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

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

Commit tested:
        7ab967941150b2f79fc089893bf51e6bb53d245b

Subject of commit:
        [gdb/symtab] Enable ada .gdb_index

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7a/7ab967941150b2f79fc089893bf51e6bb53d245b//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7a/7ab967941150b2f79fc089893bf51e6bb53d245b//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-10 14:12 [binutils-gdb] [gdb/symtab] Fix name lookup in dw2_map_matching_symbols gdb-buildbot
@ 2020-07-10 18:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-10 18:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        e5f3ece2ab3b14677c87d9694d822c9ee01b36fe

Subject of commit:
        [gdb/symtab] Fix name lookup in dw2_map_matching_symbols

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print -"
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-i686/e5/e5f3ece2ab3b14677c87d9694d822c9ee01b36fe//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-10 13:17 [binutils-gdb] ELF: Properly handle section symbols gdb-buildbot
@ 2020-07-10 15:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-10 15:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

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

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/Fedora-i686/e1/e1b5d517d1c293a64df311d2749bbbbfbe035a4c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: cmd complete "b "
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: tab complete "b "
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 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
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/e1/e1b5d517d1c293a64df311d2749bbbbfbe035a4c//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-09 15:25 [binutils-gdb] IFUNC: Update IFUNC resolver check with DT_TEXTREL gdb-buildbot
@ 2020-07-10 10:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-10 10:47 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/3423

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/Fedora-i686/ce/cebd6b8ac1c5a2a847a50e3efe932ff2d0867b3e/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ce/cebd6b8ac1c5a2a847a50e3efe932ff2d0867b3e//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-09 13:53 [binutils-gdb] i386-dis.c: Fix a typo in comments gdb-buildbot
@ 2020-07-10  8:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-10  8:16 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        f9630fa654d3421698bccd95a68712af0c86a081

Subject of commit:
        i386-dis.c: Fix a typo in comments

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-09 11:42 [binutils-gdb] x86: consistently print prefixes explicitly which are invalid with VEX etc gdb-buildbot
@ 2020-07-10  5:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-10  5:45 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/3421

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/Fedora-i686/73/73239888b37b95101d55d1d58b0acb663496b8d7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/73/73239888b37b95101d55d1d58b0acb663496b8d7//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-10  3:16 [binutils-gdb] x86: fix {,V}MOV{L,H}PD disassembly gdb-buildbot
@ 2020-07-10  3:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-10  3:16 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/3420

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        18897deb534373660e12511aeabbc1885d942dae

Subject of commit:
        x86: fix {,V}MOV{L,H}PD disassembly

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-i686/18/18897deb534373660e12511aeabbc1885d942dae//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/18/18897deb534373660e12511aeabbc1885d942dae//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-09  9:34 [binutils-gdb] x86: utilize X macro in EVEX decoding gdb-buildbot
@ 2020-07-10  0:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-10  0:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/97/97e6786a6e354de573a1ec8c5021addf0066417a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/97/97e6786a6e354de573a1ec8c5021addf0066417a//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-09  7:44 [binutils-gdb] x86: correct mis-named MOD_0F51 enumerator gdb-buildbot
@ 2020-07-09 19:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-09 19:51 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/3417

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        a5aaedb9dba2775d855fa394246ede08e9f36652

Subject of commit:
        x86: correct mis-named MOD_0F51 enumerator

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/a5/a5aaedb9dba2775d855fa394246ede08e9f36652//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-07-09 14:50 [binutils-gdb] gdb: remove TYPE_FIELD_TYPE macro gdb-buildbot
@ 2020-07-09 14:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-09 14:50 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        940da03e32c28144134d0373faf7fd5ea158f1ae

Subject of commit:
        gdb: remove TYPE_FIELD_TYPE macro

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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/Fedora-i686/94/940da03e32c28144134d0373faf7fd5ea158f1ae//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/94/940da03e32c28144134d0373faf7fd5ea158f1ae//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-08 23:05 [binutils-gdb] gdb: remove FIELD_TYPE macro gdb-buildbot
@ 2020-07-09 12:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-09 12:17 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/3414

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/Fedora-i686/b6/b6cdac4b80c1d32726227305e16483cef9d40e2c/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/b6/b6cdac4b80c1d32726227305e16483cef9d40e2c//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-08 22:10 [binutils-gdb] gdb: add field::type / field::set_type gdb-buildbot
@ 2020-07-09  9:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-09  9:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        5d14b6e5d6525ce462c30501644922a10f8682eb

Subject of commit:
        gdb: add field::type / field::set_type

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5d/5d14b6e5d6525ce462c30501644922a10f8682eb//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5d/5d14b6e5d6525ce462c30501644922a10f8682eb//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-08 21:34 [binutils-gdb] gdb: remove TYPE_INDEX_TYPE macro gdb-buildbot
@ 2020-07-09  7:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-09  7:19 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/3412

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

Commit tested:
        3d967001ecd3b325fc39d7f53ebf7054d1ecd503

Subject of commit:
        gdb: remove TYPE_INDEX_TYPE macro

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3d/3d967001ecd3b325fc39d7f53ebf7054d1ecd503//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3d/3d967001ecd3b325fc39d7f53ebf7054d1ecd503//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-08 20:39 [binutils-gdb] gdb: add type::index_type / type::set_index_type gdb-buildbot
@ 2020-07-09  4:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-09  4:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/26/262abc0d67af006a709d0935940f9c9f5f7c5ee5/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/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/Fedora-i686/26/262abc0d67af006a709d0935940f9c9f5f7c5ee5//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-08 15:56 [binutils-gdb] [PATCH] arm: Add DFB instruction for ARMv8-R gdb-buildbot
@ 2020-07-09  2:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-09  2:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/26/26417f19193444a1516c945492c5eb47dc38abe9/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/26/26417f19193444a1516c945492c5eb47dc38abe9//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-08 23:50 [binutils-gdb] ELF: Move tlsdesc_plt/tlsdesc_got to elf_link_hash_table gdb-buildbot
@ 2020-07-08 23:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-08 23:50 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/3409

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

Commit tested:
        9bcc30e4178baac8307a52841ea9fef5cda8846d

Subject of commit:
        ELF: Move tlsdesc_plt/tlsdesc_got to elf_link_hash_table

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9b/9bcc30e4178baac8307a52841ea9fef5cda8846d//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9b/9bcc30e4178baac8307a52841ea9fef5cda8846d//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-08  7:43 [binutils-gdb] x86: restrict use of register aliases gdb-buildbot
@ 2020-07-08 21:21 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-08 21:21 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/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
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/Fedora-i686/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/Fedora-i686/8a/8a6fb3f9bb5105e58f6800de9089a4bdb0cc0cd6//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-08 18:58 [binutils-gdb] elf32-tic6x.c: Define the default elf32_bed to elf32_tic6x_bed gdb-buildbot
@ 2020-07-08 18:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-08 18:58 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        845b83d7eba22c20acdd605e231f8b03a08ff71a

Subject of commit:
        elf32-tic6x.c: Define the default elf32_bed to elf32_tic6x_bed

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/84/845b83d7eba22c20acdd605e231f8b03a08ff71a//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/84/845b83d7eba22c20acdd605e231f8b03a08ff71a//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-07 17:04 [binutils-gdb] elf64-hppa: Replace plt_sec/plt_rel_sec with root.splt/root.srelplt gdb-buildbot
@ 2020-07-08 16:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-08 16:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        9b8a8575b43157a55a815814e15349ddb0865165

Subject of commit:
        elf64-hppa: Replace plt_sec/plt_rel_sec with root.splt/root.srelplt

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.multi/multi-kill.exp: continue processes
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 10: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 10: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 2: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 2: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 3: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 3: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 4: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 4: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 5: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 5: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 6: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 6: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 7: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 7: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 8: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 8: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 9: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 9: switch to inferior
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9b/9b8a8575b43157a55a815814e15349ddb0865165//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9b/9b8a8575b43157a55a815814e15349ddb0865165//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-07  1:42 [binutils-gdb] Remove is_vxworks from _bfd_sparc_elf_link_hash_table gdb-buildbot
@ 2020-07-08  2:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-08  2:20 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/3403

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/Fedora-i686/bc/bcab203d31b2dd7e0b35abda34c42c278217bcf6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/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/Fedora-i686/bc/bcab203d31b2dd7e0b35abda34c42c278217bcf6//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-06 14:12 [binutils-gdb] ELF: Add target_os to elf_link_hash_table/elf_backend_data gdb-buildbot
@ 2020-07-07 23:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-07 23:46 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/90/90c14f0c3ac0252be955990e0ae120faedfb7b59/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/90/90c14f0c3ac0252be955990e0ae120faedfb7b59//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-06  7:12 [binutils-gdb] Power10 tidies gdb-buildbot
@ 2020-07-07 21:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-07 21:16 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/3401

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/Fedora-i686/14/1424c35d071e7d49a4a219c7dee8c88ffd60ddca/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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/Fedora-i686/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/Fedora-i686/14/1424c35d071e7d49a4a219c7dee8c88ffd60ddca//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-06  5:59 [binutils-gdb] Rename PowerPC64 pcrel GOT TLS relocations gdb-buildbot
@ 2020-07-07 18:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-07 18:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        87c69f9732039d889f04ae8b9bb81b80e530a6f1

Subject of commit:
        Rename PowerPC64 pcrel GOT TLS relocations

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

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-05 21:14 [binutils-gdb] Revert "gdb/python: Avoid use after free in py-tui.c" gdb-buildbot
@ 2020-07-07 16:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-07 16:17 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/3399

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/Fedora-i686/94/940dace9cff6f44e051632e12b51cef23f19de1f/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/94/940dace9cff6f44e051632e12b51cef23f19de1f//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-05 18:46 [binutils-gdb] gdb/python: Avoid use after free in py-tui.c gdb-buildbot
@ 2020-07-07 13:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-07 13:48 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/3398

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

Commit tested:
        982a38f60b0ece9385556cff45567e06710478cb

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

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

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
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.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/98/982a38f60b0ece9385556cff45567e06710478cb//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/98/982a38f60b0ece9385556cff45567e06710478cb//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-05 16:53 [binutils-gdb] bfin: Initialize picrel to silence GCC warning gdb-buildbot
@ 2020-07-07 11:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-07 11:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        8a4ba3a14258bb522f7dadf07d92faae99e59301

Subject of commit:
        bfin: Initialize picrel to silence GCC warning

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

*** 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/Fedora-i686/8a/8a4ba3a14258bb522f7dadf07d92faae99e59301//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8a/8a4ba3a14258bb522f7dadf07d92faae99e59301//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-05 15:04 [binutils-gdb] [gdb/NEWS] Fix typos gdb-buildbot
@ 2020-07-07  6:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-07  6:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        82f06518c463badebdab653a7af4e4427c786742

Subject of commit:
        [gdb/NEWS] Fix typos

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

*** 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/Fedora-i686/82/82f06518c463badebdab653a7af4e4427c786742//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-05 14:27 [binutils-gdb] Fix a use before initialization bug in the pdp11.c source file gdb-buildbot
@ 2020-07-07  3:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-07  3:43 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/3394

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/Fedora-i686/9c/9c65eeacd88bc02aad537394930b48c50fb616d6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/9c/9c65eeacd88bc02aad537394930b48c50fb616d6//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-05 13:15 [binutils-gdb] bpf stack smashing detected gdb-buildbot
@ 2020-07-07  1:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-07  1:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        d3d1cc7b13b4b1f11862d6b58174c81536fb3340

Subject of commit:
        bpf stack smashing detected

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/d3/d3d1cc7b13b4b1f11862d6b58174c81536fb3340//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-07-06 22:46 [binutils-gdb] RISC-V: The object without priv spec attributes can be linked with any object gdb-buildbot
@ 2020-07-06 22:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-06 22:46 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        412857647fecd41c45fab0d9c45198a0d2cbf6d5

Subject of commit:
        RISC-V: The object without priv spec attributes can be linked with any object.

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/41/412857647fecd41c45fab0d9c45198a0d2cbf6d5//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/41/412857647fecd41c45fab0d9c45198a0d2cbf6d5//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-05 11:24 [binutils-gdb] Extend pdp11-aout symbol table format and code for .stab symbols gdb-buildbot
@ 2020-07-06 20:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-06 20:14 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/3391

Author:
        Stephen Casner <casner@acm.org>

Commit tested:
        a975c88e6549c508ec86658e6816d7b8f16af13c

Subject of commit:
        Extend pdp11-aout symbol table format and code for .stab symbols.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/a9/a975c88e6549c508ec86658e6816d7b8f16af13c//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-05 10:30 [binutils-gdb] Correct a comment gdb-buildbot
@ 2020-07-06 17:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-06 17:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

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

Author:
        Stephen Casner <casner@acm.org>

Commit tested:
        3b9313c4205b90e19fe2993f2e47d19fe1238894

Subject of commit:
        Correct a comment.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/3b/3b9313c4205b90e19fe2993f2e47d19fe1238894//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3b/3b9313c4205b90e19fe2993f2e47d19fe1238894//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-05  9:51 [binutils-gdb] gdb: really share partial symtabs when using .gdb_index or .debug_names gdb-buildbot
@ 2020-07-06 15:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-06 15:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/f8/f8c4185131758306ddeb7b40479e82cab4dd7f26/

*** Diff to previous build ***
==============================================
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 -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
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-i686/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/Fedora-i686/f8/f8c4185131758306ddeb7b40479e82cab4dd7f26//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-05  8:36 [binutils-gdb] x86: Remove target_id from elf_x86_link_hash_table gdb-buildbot
@ 2020-07-06 13:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-06 13:14 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/3388

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/Fedora-i686/ad/add5f777decf9257f46c98dc2aacedb52a3d65e6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/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/Fedora-i686/ad/add5f777decf9257f46c98dc2aacedb52a3d65e6//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-05  6:28 [binutils-gdb] [gdb/testsuite] Fix error handling in gdb_file_cmd gdb-buildbot
@ 2020-07-06  7:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-06  7:35 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/3386

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

Commit tested:
        95146b5da22532c6688e457adb48fecbceb194b3

Subject of commit:
        [gdb/testsuite] Fix error handling in gdb_file_cmd

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/95/95146b5da22532c6688e457adb48fecbceb194b3//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/95/95146b5da22532c6688e457adb48fecbceb194b3//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-05  6:10 [binutils-gdb] cpu, gas, opcodes: remove no longer needed workaround from the BPF port gdb-buildbot
@ 2020-07-06  5:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-06  5:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/d8/d8740be15930b820ab51d7a76695194022a83551/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/d8/d8740be15930b820ab51d7a76695194022a83551//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-04 16:50 [binutils-gdb] opcodes: discriminate endianness and insn-endianness in CGEN ports gdb-buildbot
@ 2020-07-06  2:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-06  2:36 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/3384

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/Fedora-i686/e9/e9bffec9afc45cf7c49308f0b4b8cc6bf68f58f2/

*** 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/Fedora-i686/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/Fedora-i686/e9/e9bffec9afc45cf7c49308f0b4b8cc6bf68f58f2//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-04 15:55 [binutils-gdb] opcodes: support insn endianness in cgen_cpu_open gdb-buildbot
@ 2020-07-06  0:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-06  0:07 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/3383

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

Commit tested:
        b3db6d07be467fe86f5b4185a8fc7bec49380c1f

Subject of commit:
        opcodes: support insn endianness in cgen_cpu_open

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-04 15:17 [binutils-gdb] [gdb/testsuite] Fix use of fail in gdb_cmd_file gdb-buildbot
@ 2020-07-05 21:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-05 21:33 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/0c/0cfcd4f003ce0ed5467fd0ceeff4a191439c5923/

*** 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/Fedora-i686/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/Fedora-i686/0c/0cfcd4f003ce0ed5467fd0ceeff4a191439c5923//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-04 13:45 [binutils-gdb] ELF: Don't check relocations in non-loaded, non-alloced sections gdb-buildbot
@ 2020-07-05 19:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-05 19:06 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/3381

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

Commit tested:
        c4b126b87a6cd842e567136b07ac1adca98c660f

Subject of commit:
        ELF: Don't check relocations in non-loaded, non-alloced sections

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-i686/c4/c4b126b87a6cd842e567136b07ac1adca98c660f//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-04  0:30 [binutils-gdb] [gdb/symtab] Fix missing breakpoint location for inlined function gdb-buildbot
@ 2020-07-05 14:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-05 14:04 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/3379

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/Fedora-i686/f9/f9b5d5ea18a3878ca48c1b747e35d456133858bc/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/f9/f9b5d5ea18a3878ca48c1b747e35d456133858bc//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-03 22:40 [binutils-gdb] nios2: Don't check relocations in non-loaded, non-alloced sections gdb-buildbot
@ 2020-07-05  9:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-05  9:07 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        58ee44efbc3798a8224e685aa47b224dc67efe7d

Subject of commit:
        nios2: Don't check relocations in non-loaded, non-alloced sections

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

*** 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 -> 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-i686/58/58ee44efbc3798a8224e685aa47b224dc67efe7d//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-03 22:03 [binutils-gdb] frv: Don't generate dynamic relocation for non SEC_ALLOC sections gdb-buildbot
@ 2020-07-05  6:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-05  6:37 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/3376

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/Fedora-i686/9a/9a6896021df5997a1ea5d52b86b833920005e652/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/9a/9a6896021df5997a1ea5d52b86b833920005e652//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-03 20:13 [binutils-gdb] [gdb/testsuite] Fix use of verbose in gdb/jit-*.exp gdb-buildbot
@ 2020-07-05  1:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-05  1:37 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/3374

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/Fedora-i686/51/5144dfba285d9b467016b7a2f72f0240fda7ce8f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/51/5144dfba285d9b467016b7a2f72f0240fda7ce8f//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-03 19:18 [binutils-gdb] Updated Serbian translation for the opcodes sub-directory gdb-buildbot
@ 2020-07-04 23:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-04 23:12 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/4e/4ee4189f86ca1efac81864c61b51acca65078077/

*** 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=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/4e/4ee4189f86ca1efac81864c61b51acca65078077//xfail.table.gz>



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

* Failures on Fedora-i686, 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-07-04 20:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-04 20:37 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/3372

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/Fedora-i686/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/Fedora-i686/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/Fedora-i686/0b/0bff75284e1067e22cbe88fad672362db06f22ee//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-03 17:10 [binutils-gdb] ELF: Consolidate maybe_set_textrel gdb-buildbot
@ 2020-07-04 18:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-04 18:09 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/3371

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

Commit tested:
        d49e5065ed43ec88627fd8cc6ab9e45fcc0e538a

Subject of commit:
        ELF: Consolidate maybe_set_textrel

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-03 16:09 [binutils-gdb] ELF: Copy dyn_relocs in _bfd_elf_link_hash_copy_indirect gdb-buildbot
@ 2020-07-04 15:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-04 15:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/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/Fedora-i686/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/Fedora-i686/ad/ad172eaa4f5ff973890a6c37574946cecf0668b0//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-04 13:09 [binutils-gdb] ELF: Consolidate readonly_dynrelocs gdb-buildbot
@ 2020-07-04 13:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-04 13:09 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/3369

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

Commit tested:
        5dbc8b372f3a15fa4dce65d460a3cce7ed081f6c

Subject of commit:
        ELF: Consolidate readonly_dynrelocs

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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/Fedora-i686/5d/5dbc8b372f3a15fa4dce65d460a3cce7ed081f6c//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5d/5dbc8b372f3a15fa4dce65d460a3cce7ed081f6c//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-03 14:37 [binutils-gdb] x86: Silence -fsanitize=undefined gdb-buildbot
@ 2020-07-04 10:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-04 10:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/43/433953ffa1a59531a5537327a4e3ce24565e609c/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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/Fedora-i686/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/Fedora-i686/43/433953ffa1a59531a5537327a4e3ce24565e609c//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-03 10:21 [binutils-gdb] PR26069, strip/objcopy misaligned address accesses gdb-buildbot
@ 2020-07-04  8:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-04  8:10 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/3367

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        675800364bfdbc29ee034681339e4b4a137bb2f5

Subject of commit:
        PR26069, strip/objcopy misaligned address accesses

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

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
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-i686/67/675800364bfdbc29ee034681339e4b4a137bb2f5//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/67/675800364bfdbc29ee034681339e4b4a137bb2f5//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-04  5:43 [binutils-gdb] PR26069, strip/objcopy memory leaks gdb-buildbot
@ 2020-07-04  5:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-04  5:43 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/3366

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        0ed18fa177858d67fec42babbca3fef4ae1d939f

Subject of commit:
        PR26069, strip/objcopy memory leaks

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/0e/0ed18fa177858d67fec42babbca3fef4ae1d939f//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0e/0ed18fa177858d67fec42babbca3fef4ae1d939f//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-03  1:15 [binutils-gdb] gdb: Convert language skip_trampoline field to a method gdb-buildbot
@ 2020-07-04  0:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-04  0:43 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/3364

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

Commit tested:
        f6eee2d098049afd18f90b8f4bb6a5d1a49d900c

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

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-03  0:38 [binutils-gdb] gdb: Convert language la_demangle field to a method gdb-buildbot
@ 2020-07-03 22:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-03 22:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/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 -> 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-i686/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/Fedora-i686/0a/0a50df5dabfe12c8bf20f4f724622ff38ef7828b//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-02 21:16 [binutils-gdb] gdb: Convert language la_search_name_hash field to a method gdb-buildbot
@ 2020-07-03 14:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-03 14:43 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/3360

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/Fedora-i686/fb/fb8006fd350ad9eba04c19904f9a0fcd47628b41/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/fb/fb8006fd350ad9eba04c19904f9a0fcd47628b41//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-02 19:45 [binutils-gdb] gdb: Convert language la_iterate_over_symbols field to a method gdb-buildbot
@ 2020-07-03  9:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-03  9:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/40/4009ee92c4ec3ee63f455c5abd761e26a819ef4a/

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



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

* Failures on Fedora-i686, branch master
  2020-06-02 19:07 [binutils-gdb] gdb: Convert language la_lookup_transparent_type field to a method gdb-buildbot
@ 2020-07-03  7:11 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-03  7:11 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/3357

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/Fedora-i686/54/54f4ca4610893424746e56997115b71bc31ffd8a/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/54/54f4ca4610893424746e56997115b71bc31ffd8a//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-02 17:54 [binutils-gdb] gdb: Convert language la_language_arch_info field to a method gdb-buildbot
@ 2020-07-03  4:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-03  4:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

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

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/Fedora-i686/1f/1fb314aaa3142711e452e66c2dced781a4d1ef87/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/1f/1fb314aaa3142711e452e66c2dced781a4d1ef87//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-02 17:17 [binutils-gdb] gdb: Convert language la_pass_by_reference field to a method gdb-buildbot
@ 2020-07-03  2:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-03  2:16 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/3355

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/Fedora-i686/48/48448202d7e607d7423c6186438099f442732a95/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/48/48448202d7e607d7423c6186438099f442732a95//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
       [not found] <15e5fd35569d555ca53f074c571d4a3d06da67b0@gdb-build>
@ 2020-07-02 23:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-02 23:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        15e5fd35569d555ca53f074c571d4a3d06da67b0

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

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

*** Diff to previous build ***
==============================================
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=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
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-06-02 15:09 [binutils-gdb] gdb: Convert language la_print_array_index field to a method gdb-buildbot
@ 2020-07-02 21:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-02 21:15 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/3353

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/Fedora-i686/5b/5bd40f2a3feb273e92b640544f6e5307c8124d90/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/5b/5bd40f2a3feb273e92b640544f6e5307c8124d90//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-02 18:46 [binutils-gdb] gdb: Represent all languages as sub-classes of language_defn gdb-buildbot
@ 2020-07-02 18:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-02 18:46 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/3352

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

Commit tested:
        0874fd075b2a519022259a3cc48e650dc1daeeab

Subject of commit:
        gdb: Represent all languages as sub-classes of language_defn

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/08/0874fd075b2a519022259a3cc48e650dc1daeeab//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/08/0874fd075b2a519022259a3cc48e650dc1daeeab//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-02 13:34 [binutils-gdb] [gdb/testsuite] Fix scrolling in gdb.dwarf2/multidictionary.exp gdb-buildbot
@ 2020-07-02 16:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-02 16:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/62/621eacdfb42f9deba559ea0bada70f6ca2367f5f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/62/621eacdfb42f9deba559ea0bada70f6ca2367f5f//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-02  1:47 [binutils-gdb] ELF: Move dyn_relocs to struct elf_link_hash_entry gdb-buildbot
@ 2020-07-02 13:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-02 13:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

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

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

Commit tested:
        190eb1ddba41aad3a31edead9392473ae9d3bbe3

Subject of commit:
        ELF: Move dyn_relocs to struct elf_link_hash_entry

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/19/190eb1ddba41aad3a31edead9392473ae9d3bbe3//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/19/190eb1ddba41aad3a31edead9392473ae9d3bbe3//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-01 15:41 [binutils-gdb] alpha-vms: ETIR checks gdb-buildbot
@ 2020-07-02 11:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-02 11:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/2f/2fdb65f247379befd548a33ea185172968b9ebb9/

*** 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/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2f/2fdb65f247379befd548a33ea185172968b9ebb9//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-01  9:25 [binutils-gdb] gdb: Preserve is-stmt lines when switch between files gdb-buildbot
@ 2020-07-02  6:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-02  6:22 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/3347

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

Commit tested:
        1313c56ef9a68b5b753b3148dc7e8b3a4bb2d8ff

Subject of commit:
        gdb: Preserve is-stmt lines when switch between files

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/13/1313c56ef9a68b5b753b3148dc7e8b3a4bb2d8ff//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/13/1313c56ef9a68b5b753b3148dc7e8b3a4bb2d8ff//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-01  8:35 [binutils-gdb] hurd: Add shared mig declarations gdb-buildbot
@ 2020-07-02  3:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-02  3:54 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/3346

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

Commit tested:
        b7ed9f3d466700d4e766083b1e4f3a132e5fd4b4

Subject of commit:
        hurd: Add shared mig declarations

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply level 0 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print -"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-05-31 10:59 [binutils-gdb] gnu-nat: Move local functions inside gnu_nat_target class gdb-buildbot
@ 2020-07-02  0:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-02  0:28 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/14/14a8ad62e6a7885296d234c3765bfab08df3dc6f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply level 0 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print "
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/14/14a8ad62e6a7885296d234c3765bfab08df3dc6f//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-01 13:45 [binutils-gdb] hurd: unwinding support over signal trampolines gdb-buildbot
@ 2020-07-01 13:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-01 13:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        0af5e1061d7e7bff9270d30635ac4409888c9b73

Subject of commit:
        hurd: unwinding support over signal trampolines

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

*** 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 -> 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-i686/0a/0af5e1061d7e7bff9270d30635ac4409888c9b73//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0a/0af5e1061d7e7bff9270d30635ac4409888c9b73//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-07-01 11:12 [binutils-gdb] hurd: fix pushing target on inferior creation gdb-buildbot
@ 2020-07-01 11:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-01 11:12 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/3342

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

Commit tested:
        078f2fc9c153e6efd1c88b0a34eccc1164f9ae2f

Subject of commit:
        hurd: fix pushing target on inferior creation

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/07/078f2fc9c153e6efd1c88b0a34eccc1164f9ae2f//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/07/078f2fc9c153e6efd1c88b0a34eccc1164f9ae2f//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-05-31  0:21 [binutils-gdb] hurd: add gnu_target pointer to fix thread API calls gdb-buildbot
@ 2020-07-01  8:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-01  8:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/53/53dff92cb56fb21dc81c183aa35a5a3ae8c06e32/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/53/53dff92cb56fb21dc81c183aa35a5a3ae8c06e32//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-05-30 23:26 [binutils-gdb] hurd: remove unused variables gdb-buildbot
@ 2020-07-01  6:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-01  6:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/5a/5a8b86270bbce5f9316ef7bdaa1a20b4832335ca/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/5a/5a8b86270bbce5f9316ef7bdaa1a20b4832335ca//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-05-30 22:32 [binutils-gdb] hurd: add missing include gdb-buildbot
@ 2020-07-01  3:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-07-01  3:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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

Commit tested:
        366f550a593c7e6bae3699a4b6d65fe937af5603

Subject of commit:
        hurd: add missing include

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

*** 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/Fedora-i686/36/366f550a593c7e6bae3699a4b6d65fe937af5603//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/36/366f550a593c7e6bae3699a4b6d65fe937af5603//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-30 21:23 [binutils-gdb] hurd: add missing awk script dependency gdb-buildbot
@ 2020-06-30 21:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-30 21:23 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/3337

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

Commit tested:
        c6887cfb4ffb80337618138f4f302eb1bfb6df8a

Subject of commit:
        hurd: add missing awk script dependency

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

*** 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 -> 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-i686/c6/c6887cfb4ffb80337618138f4f302eb1bfb6df8a//xfail.gz>

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

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



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

* Failures on Fedora-i686, branch master
  2020-05-30 20:07 [binutils-gdb] hurd: fix gnu_debug_flag type gdb-buildbot
@ 2020-06-30 17:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-30 17:43 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/3335

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/Fedora-i686/69/6930bffe3373690b3431d6291f9f7c116d6a1ec4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/69/6930bffe3373690b3431d6291f9f7c116d6a1ec4//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-05-30 16:54 [binutils-gdb] gdb: change bug URL to https gdb-buildbot
@ 2020-06-30 15:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-30 15:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Jonny Grant <jg@jguk.org>

Commit tested:
        112c22ed1f35049a73994bfdab0fdabb4fb91886

Subject of commit:
        gdb: change bug URL to https

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/11/112c22ed1f35049a73994bfdab0fdabb4fb91886//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/11/112c22ed1f35049a73994bfdab0fdabb4fb91886//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-30 12:42 [binutils-gdb] replace_typedefs: handle templates in namespaces gdb-buildbot
@ 2020-06-30 12:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-30 12:42 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/3333

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        f68f85b52b2897ba54e0b119322be1abb2d53afe

Subject of commit:
        replace_typedefs: handle templates in namespaces

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

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

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

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

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

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



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

* Failures on Fedora-i686, branch master
  2020-05-30  9:14 [binutils-gdb] gdb: rename dwarf2_per_objfile variables/fields to per_objfile gdb-buildbot
@ 2020-06-30 10:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-30 10:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/97/976ca31673841e14a7595ed32f8009b61608fe46/

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

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/97/976ca31673841e14a7595ed32f8009b61608fe46//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-05-30  8:38 [binutils-gdb] Fix build errors in with clang in gdb.compile/compile-cplus.c gdb-buildbot
@ 2020-06-30  7:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-30  7:42 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/3331

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        678048e8079ace915052f3070b2df97bcaea58d2

Subject of commit:
        Fix build errors in with clang in gdb.compile/compile-cplus.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/67/678048e8079ace915052f3070b2df97bcaea58d2//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/67/678048e8079ace915052f3070b2df97bcaea58d2//xfail.table.gz>



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

* Failures on Fedora-i686, 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-06-30  5:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-30  5:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

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/Fedora-i686/9f/9fcafd23fa6d919f112e9a7f73e72895c2457de1/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/9f/9fcafd23fa6d919f112e9a7f73e72895c2457de1//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-05-30  6:49 [binutils-gdb] Build two gdb.cp testcases with -Wno-unused-comparison gdb-buildbot
@ 2020-06-30  2:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-30  2:46 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/3329

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/Fedora-i686/73/735d5a07160bcffaa8e66d4fffecd7f333a0e1fe/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/73/735d5a07160bcffaa8e66d4fffecd7f333a0e1fe//xfail.table.gz>



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

* Failures on Fedora-i686, branch master
  2020-06-30  0:16 [binutils-gdb] bfd: fix handling of R_BPF_INSN_{32,64} relocations gdb-buildbot
@ 2020-06-30  0:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-30  0:16 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        David Faust <david.faust@oracle.com>

Commit tested:
        12adf8053ba0b241d3973b46109842a1cbfa60de

Subject of commit:
        bfd: fix handling of R_BPF_INSN_{32,64} relocations.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/12/12adf8053ba0b241d3973b46109842a1cbfa60de/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/12/12adf8053ba0b241d3973b46109842a1cbfa60de//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/12/12adf8053ba0b241d3973b46109842a1cbfa60de//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-30  5:00 [binutils-gdb] cpu, opcodes: add instruction semantics to bpf.cpu and minor fixes gdb-buildbot
@ 2020-06-29 21:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-29 21:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3327

Author:
        Jose E. Marchesi <jose.marchesi@oracle.com>

Commit tested:
        78c1c35437a013c63acbff6926ff8d254e283d69

Subject of commit:
        cpu,opcodes: add instruction semantics to bpf.cpu and minor fixes

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/78/78c1c35437a013c63acbff6926ff8d254e283d69/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/78/78c1c35437a013c63acbff6926ff8d254e283d69//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/78/78c1c35437a013c63acbff6926ff8d254e283d69//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-06-29 19:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-29 19:15 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/3326

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/Fedora-i686/98/989ade05525047fc6b94f24ece5fc09e076027b0/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/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/Fedora-i686/98/989ade05525047fc6b94f24ece5fc09e076027b0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-29 14:19 [binutils-gdb] Fix all unexpected failures in gas testsuite for pdp11-aout gdb-buildbot
@ 2020-06-29 14:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-29 14:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3324

Author:
        Stephen Casner <casner@acm.org>

Commit tested:
        66e3eb08a52ba20d3fb468cef04952aafdf534d4

Subject of commit:
        Fix all unexpected failures in gas testsuite for pdp11-aout.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/66/66e3eb08a52ba20d3fb468cef04952aafdf534d4/

*** 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 -> 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-i686/66/66e3eb08a52ba20d3fb468cef04952aafdf534d4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/66/66e3eb08a52ba20d3fb468cef04952aafdf534d4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-30  1:38 [binutils-gdb] Fix "enumeration values not handled in switch" error in testsuite gdb-buildbot
@ 2020-06-29 11:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-29 11:47 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/3323

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/Fedora-i686/4a/4ad2c6a03ecb7faaf2658d3f8fb94f06441f2ba8/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/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/Fedora-i686/4a/4ad2c6a03ecb7faaf2658d3f8fb94f06441f2ba8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-06-29  9:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-29  9:18 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3322

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/Fedora-i686/44/44486dcf19b62708ad49bbb6094e065a223dea99/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print "
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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> 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-i686/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/Fedora-i686/44/44486dcf19b62708ad49bbb6094e065a223dea99//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 23:32 [binutils-gdb] Pass -Wno-deprecated-register for gdb.cp that use "register" gdb-buildbot
@ 2020-06-29  6:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-29  6:50 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3321

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        09fe663ed827474bfb73b78d0506cecdcd8ece9d

Subject of commit:
        Pass -Wno-deprecated-register for gdb.cp that use "register"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/09/09fe663ed827474bfb73b78d0506cecdcd8ece9d/

*** Diff to previous build ***
==============================================
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-i686/09/09fe663ed827474bfb73b78d0506cecdcd8ece9d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/09/09fe663ed827474bfb73b78d0506cecdcd8ece9d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 22:37 [binutils-gdb] [gdb/symtab] Make gold index workaround more precise gdb-buildbot
@ 2020-06-29  4:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-29  4:22 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/3320

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/Fedora-i686/f0/f030440daa989ae3dadc1fa4342cfa16d690db3c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/f0/f030440daa989ae3dadc1fa4342cfa16d690db3c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 21:41 [binutils-gdb] Fix "'operator new' should not return NULL" errors in testsuite gdb-buildbot
@ 2020-06-29  1:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-29  1:54 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/3319

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/Fedora-i686/ce/cee00f171520eb85867230d4cbed34480c64e71e/

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ce/cee00f171520eb85867230d4cbed34480c64e71e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 19:53 [binutils-gdb] PR26044, Some targets can't be compiled with GCC 10 (tilepro) gdb-buildbot
@ 2020-06-28 20:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-28 20:42 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/3317

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        8eff95bcb6a778c35b91e61ccc066db335d7f06b

Subject of commit:
        PR26044, Some targets can't be compiled with GCC 10 (tilepro)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8e/8eff95bcb6a778c35b91e61ccc066db335d7f06b/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8e/8eff95bcb6a778c35b91e61ccc066db335d7f06b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8e/8eff95bcb6a778c35b91e61ccc066db335d7f06b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 18:58 [binutils-gdb] asan: ns32k: use of uninitialized value gdb-buildbot
@ 2020-06-28 18:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-28 18:16 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/3316

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        ab382d64260d6549f57201b80d34035726117e3f

Subject of commit:
        asan: ns32k: use of uninitialized value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ab/ab382d64260d6549f57201b80d34035726117e3f/

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ab/ab382d64260d6549f57201b80d34035726117e3f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ab/ab382d64260d6549f57201b80d34035726117e3f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 18:04 [binutils-gdb] Fix a potential use of an uninitialised value in the ns32k disassembler gdb-buildbot
@ 2020-06-28 15:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-28 15:46 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3315

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        151f5de4a6548cd83a79b4705f1e901776ddacc5

Subject of commit:
        Fix a potential use of an uninitialised value in the ns32k disassembler.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/15/151f5de4a6548cd83a79b4705f1e901776ddacc5/

*** 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 -> 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/Fedora-i686/15/151f5de4a6548cd83a79b4705f1e901776ddacc5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/15/151f5de4a6548cd83a79b4705f1e901776ddacc5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 17:09 [binutils-gdb] cp-completion-aliases.exp: Use test_gdb_complete_{unique, multiple} gdb-buildbot
@ 2020-06-28 13:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-28 13:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3314

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/Fedora-i686/63/636edd0018b72d67ee224e868fb277a658e9b984/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/63/636edd0018b72d67ee224e868fb277a658e9b984//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 16:12 [binutils-gdb] Use add_partial_symbol in load_partial_dies gdb-buildbot
@ 2020-06-28 10:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-28 10:48 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/3313

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/Fedora-i686/f0/f0fbb768c223fd65385e2e2380fd04fde7121e5e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/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/Fedora-i686/f0/f0fbb768c223fd65385e2e2380fd04fde7121e5e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 15:17 [binutils-gdb] Inline abbrev lookup gdb-buildbot
@ 2020-06-28  8:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-28  8:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3312

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        af0b2a3e85df9f49a3528e5b7578fcf9412f1acc

Subject of commit:
        Inline abbrev lookup

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/af/af0b2a3e85df9f49a3528e5b7578fcf9412f1acc/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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/Fedora-i686/af/af0b2a3e85df9f49a3528e5b7578fcf9412f1acc//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/af/af0b2a3e85df9f49a3528e5b7578fcf9412f1acc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 14:23 [binutils-gdb] Lazily compute partial DIE name gdb-buildbot
@ 2020-06-28  5:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-28  5:50 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/3311

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/Fedora-i686/7d/7d00ffecd2b16608f0bcfbc0402fec2cc228a3e7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/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/Fedora-i686/7d/7d00ffecd2b16608f0bcfbc0402fec2cc228a3e7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 13:46 [binutils-gdb] Attribute method inlining gdb-buildbot
@ 2020-06-28  3:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-28  3:17 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3310

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/Fedora-i686/69/697bba18273d3a03f9093a94cf3e1d75012905f3/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/69/697bba18273d3a03f9093a94cf3e1d75012905f3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 12:30 [binutils-gdb] Move exit_status_set_internal_vars out of GLOBAL_CURDIR gdb-buildbot
@ 2020-06-28  0:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-28  0:51 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3309

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        c17ace4397c73bcdeb616f1b854a1cf8a8b6579c

Subject of commit:
        Move exit_status_set_internal_vars out of GLOBAL_CURDIR

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c1/c17ace4397c73bcdeb616f1b854a1cf8a8b6579c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: 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-i686/c1/c17ace4397c73bcdeb616f1b854a1cf8a8b6579c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c1/c17ace4397c73bcdeb616f1b854a1cf8a8b6579c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 11:16 [binutils-gdb] Use errno value of first openp failure gdb-buildbot
@ 2020-06-27 22:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-27 22:52 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/3308

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        96445f0b66af20343e2ffed08c4da8cfac101a03

Subject of commit:
        Use errno value of first openp failure

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/96/96445f0b66af20343e2ffed08c4da8cfac101a03/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/96/96445f0b66af20343e2ffed08c4da8cfac101a03//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/96/96445f0b66af20343e2ffed08c4da8cfac101a03//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 10:41 [binutils-gdb] Don't close process handle provided by WaitForDebugEvent gdb-buildbot
@ 2020-06-27 19:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-27 19:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3307

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/Fedora-i686/64/6479bf854a468c0270bb0fcdc9d0271cca3eb5b5/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/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/Fedora-i686/64/6479bf854a468c0270bb0fcdc9d0271cca3eb5b5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29  9:27 [binutils-gdb] Don't close thread handles provided by WaitForDebugEvent gdb-buildbot
@ 2020-06-27 17:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-27 17:18 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/3306

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/Fedora-i686/ac/ac637ec30dd9a3b19a02d1967a80e4ddf739706e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ac/ac637ec30dd9a3b19a02d1967a80e4ddf739706e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-27 14:47 [binutils-gdb] Share DWARF partial symtabs gdb-buildbot
@ 2020-06-27 14:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-27 14:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3305

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        17ee85fc2af74471e8c57502714a32bbeac5f1ae

Subject of commit:
        Share DWARF partial symtabs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/17/17ee85fc2af74471e8c57502714a32bbeac5f1ae/

*** 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/Fedora-i686/17/17ee85fc2af74471e8c57502714a32bbeac5f1ae//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/17/17ee85fc2af74471e8c57502714a32bbeac5f1ae//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29  7:57 [binutils-gdb] Move line_header_hash to dwarf2_per_objfile gdb-buildbot
@ 2020-06-27 12:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-27 12:17 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/3304

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        39b16f87f720b5cc454eac1e668c2ce2c60bfe15

Subject of commit:
        Move line_header_hash to dwarf2_per_objfile

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/39/39b16f87f720b5cc454eac1e668c2ce2c60bfe15/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/39/39b16f87f720b5cc454eac1e668c2ce2c60bfe15//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/39/39b16f87f720b5cc454eac1e668c2ce2c60bfe15//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29  6:26 [binutils-gdb] Replace dwarf2_per_cu_data::cu backlink with per-objfile map gdb-buildbot
@ 2020-06-27  7:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-27  7:22 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3302

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/Fedora-i686/71/7188ed02d2a7e3fce00a0214e70457c5ef56df6b/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/71/7188ed02d2a7e3fce00a0214e70457c5ef56df6b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29  5:31 [binutils-gdb] Pass existing_cu object to cutu_reader gdb-buildbot
@ 2020-06-27  4:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-27  4:46 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/3301

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/Fedora-i686/2e/2e6711003b8c69abe25100a7b2630409a4aafb8d/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2e/2e6711003b8c69abe25100a7b2630409a4aafb8d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29  4:36 [binutils-gdb] Add comp_unit_head to dwarf2_per_cu_data gdb-buildbot
@ 2020-06-27  2:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-27  2:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3300

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/Fedora-i686/2e/2e6a9f7959dca5af9a7e6e5cea8c5dccd2e510f0/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2e/2e6a9f7959dca5af9a7e6e5cea8c5dccd2e510f0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29  3:22 [binutils-gdb] Make load_cu return the loaded dwarf2_cu gdb-buildbot
@ 2020-06-26 23:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-26 23:51 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/3299

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/Fedora-i686/1b/1b555f17476d99f97f33fb4c648d94f7767bcbd7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/1b/1b555f17476d99f97f33fb4c648d94f7767bcbd7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29  2:26 [binutils-gdb] Pass dwarf2_cu to process_full_{comp,type}_unit gdb-buildbot
@ 2020-06-26 21:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-26 21:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3298

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        8fc0b21da6d25e0a9fc565a94d2301c2365f2d3c

Subject of commit:
        Pass dwarf2_cu to process_full_{comp,type}_unit

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8fc0b21da6d25e0a9fc565a94d2301c2365f2d3c/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8fc0b21da6d25e0a9fc565a94d2301c2365f2d3c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8fc0b21da6d25e0a9fc565a94d2301c2365f2d3c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-26 18:51 [binutils-gdb] Pass dwarf2_per_bfd instead of dwarf2_per_objfile to some index-related functions gdb-buildbot
@ 2020-06-26 18:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-26 18:51 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/3297

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        168c9250f292bf8d2db6dba374232e3655c10d94

Subject of commit:
        Pass dwarf2_per_bfd instead of dwarf2_per_objfile to some index-related functions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/16/168c9250f292bf8d2db6dba374232e3655c10d94/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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/Fedora-i686/16/168c9250f292bf8d2db6dba374232e3655c10d94//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/16/168c9250f292bf8d2db6dba374232e3655c10d94//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28 22:44 [binutils-gdb] Remove dwarf2_per_cu_data::dwarf2_per_objfile gdb-buildbot
@ 2020-06-26 11:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-26 11:19 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/3294

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/Fedora-i686/12/127bbf4b50c31b75b9d4c0ecc6b014dbd7ec38f9/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/12/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/Fedora-i686/12/127bbf4b50c31b75b9d4c0ecc6b014dbd7ec38f9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-26  8:48 [binutils-gdb] Remove leftover references to dwarf2_per_cu_data::dwarf2_per_objfile gdb-buildbot
@ 2020-06-26  8:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-26  8:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3293

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        f6e649ddafd88efbd1c02432181300595dadab33

Subject of commit:
        Remove leftover references to dwarf2_per_cu_data::dwarf2_per_objfile

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f6/f6e649ddafd88efbd1c02432181300595dadab33/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f6/f6e649ddafd88efbd1c02432181300595dadab33//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f6/f6e649ddafd88efbd1c02432181300595dadab33//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28 20:15 [binutils-gdb] Add dwarf2_per_objfile parameter to get_die_type_at_offset gdb-buildbot
@ 2020-06-26  6:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-26  6:19 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/3292

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        aa66c379449b3ca41abfd5d43d97b0918387194c

Subject of commit:
        Add dwarf2_per_objfile parameter to get_die_type_at_offset

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/aa/aa66c379449b3ca41abfd5d43d97b0918387194c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/aa/aa66c379449b3ca41abfd5d43d97b0918387194c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/aa/aa66c379449b3ca41abfd5d43d97b0918387194c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-26  3:50 [binutils-gdb] Add dwarf2_per_objfile parameter to free_one_cached_comp_unit gdb-buildbot
@ 2020-06-26  3:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-26  3:50 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3291

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        120ce1b5b255226227e5e36342b2e3764c2a80aa

Subject of commit:
        Add dwarf2_per_objfile parameter to free_one_cached_comp_unit

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/12/120ce1b5b255226227e5e36342b2e3764c2a80aa/

*** 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/Fedora-i686/12/120ce1b5b255226227e5e36342b2e3764c2a80aa//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/12/120ce1b5b255226227e5e36342b2e3764c2a80aa//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-26  1:24 [binutils-gdb] Remove dwarf2_per_cu_data::objfile () gdb-buildbot
@ 2020-06-26  1:24 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-26  1:24 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3290

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        9f47c7071654d8cee82ff91ec1e65d57bd78e77f

Subject of commit:
        Remove dwarf2_per_cu_data::objfile ()

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9f/9f47c7071654d8cee82ff91ec1e65d57bd78e77f/

*** 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=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9f/9f47c7071654d8cee82ff91ec1e65d57bd78e77f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9f/9f47c7071654d8cee82ff91ec1e65d57bd78e77f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28 16:37 [binutils-gdb] Add dwarf2_per_objfile parameter to allocate_piece_closure gdb-buildbot
@ 2020-06-25 19:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-25 19:00 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/3288

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/Fedora-i686/3c/3c3cd3d4d7c7e05aa48b87c4ab11bac12a2caf7c/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/3c/3c3cd3d4d7c7e05aa48b87c4ab11bac12a2caf7c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28 16:19 [binutils-gdb] Add dwarf2_per_objfile parameter to dwarf2_read_addr_index gdb-buildbot
@ 2020-06-25 15:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-25 15:18 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/3286

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/Fedora-i686/82/82ca3f5189e9f8199dc21baeabe2a31a342db163/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/82/82ca3f5189e9f8199dc21baeabe2a31a342db163//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28 15:00 [binutils-gdb] Remove dwarf2_per_cu_data::text_offset gdb-buildbot
@ 2020-06-25 12:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-25 12:50 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3285

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        4b167ea1a0f1ff6f02684556e951dab8d48b9fa4

Subject of commit:
        Remove dwarf2_per_cu_data::text_offset

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4b/4b167ea1a0f1ff6f02684556e951dab8d48b9fa4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "print "
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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4b/4b167ea1a0f1ff6f02684556e951dab8d48b9fa4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4b/4b167ea1a0f1ff6f02684556e951dab8d48b9fa4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-25 10:23 [binutils-gdb] Add dwarf2_per_objfile to dwarf_expr_context and dwarf2_frame_cache gdb-buildbot
@ 2020-06-25 10:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-25 10:23 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/3284

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        89b07335fe42d6da84c19351ca0c34b11a3c4f8e

Subject of commit:
        Add dwarf2_per_objfile to dwarf_expr_context and dwarf2_frame_cache

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/89/89b07335fe42d6da84c19351ca0c34b11a3c4f8e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/89/89b07335fe42d6da84c19351ca0c34b11a3c4f8e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/89/89b07335fe42d6da84c19351ca0c34b11a3c4f8e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28 13:28 [binutils-gdb] Move int type methods out of dwarf2_per_cu_data gdb-buildbot
@ 2020-06-25  8:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-25  8:22 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3283

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/Fedora-i686/29/293e7e51145506f5f547a777242d7963f946c6ec/

*** 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=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/29/293e7e51145506f5f547a777242d7963f946c6ec//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-06-25  5:21 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-25  5:21 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/3282

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/Fedora-i686/64/64874a40306f556c290c8829f42526443db0f9e9/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/64/64874a40306f556c290c8829f42526443db0f9e9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-25  2:49 [binutils-gdb] Pass dwarf2_cu objects to dwo-related functions, instead of dwarf2_per_cu_data gdb-buildbot
@ 2020-06-25  2:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-25  2:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3281

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        4ab09049d65fbda8637400bde3d39761ae512404

Subject of commit:
        Pass dwarf2_cu objects to dwo-related functions, instead of dwarf2_per_cu_data

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4a/4ab09049d65fbda8637400bde3d39761ae512404/

*** 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/Fedora-i686/4a/4ab09049d65fbda8637400bde3d39761ae512404//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4a/4ab09049d65fbda8637400bde3d39761ae512404//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-25  0:19 [binutils-gdb] Add dwarf2_per_objfile parameter to process_full_{comp, type}_unit gdb-buildbot
@ 2020-06-25  0:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-25  0:19 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/3280

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        47b14e8676aa8a4d91f9e3af02aed3a4be00186a

Subject of commit:
        Add dwarf2_per_objfile parameter to process_full_{comp,type}_unit

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/47/47b14e8676aa8a4d91f9e3af02aed3a4be00186a/

*** 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 -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/47/47b14e8676aa8a4d91f9e3af02aed3a4be00186a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/47/47b14e8676aa8a4d91f9e3af02aed3a4be00186a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28  8:28 [binutils-gdb] Add dwarf2_per_objfile parameter to create_partial_symtab gdb-buildbot
@ 2020-06-24 19:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-24 19:22 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/3278

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/Fedora-i686/7a/7aa104c423d935656d81ba6612586e98ee9babb5/

*** Diff to previous build ***
==============================================
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 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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/7a/7aa104c423d935656d81ba6612586e98ee9babb5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-24 16:54 [binutils-gdb] Remove dwarf2_per_cu_data::dwarf2_per_objfile reference in cutu_reader::keep gdb-buildbot
@ 2020-06-24 16:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-24 16:54 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/3277

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        e3beb21d3521e7f5ba8b40732ea1bfe3cafd9033

Subject of commit:
        Remove dwarf2_per_cu_data::dwarf2_per_objfile reference in cutu_reader::keep

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e3/e3beb21d3521e7f5ba8b40732ea1bfe3cafd9033/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-i686/e3/e3beb21d3521e7f5ba8b40732ea1bfe3cafd9033//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e3/e3beb21d3521e7f5ba8b40732ea1bfe3cafd9033//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-24 14:18 [binutils-gdb] Make queue_and_load_dwo_tu receive a dwarf2_cu gdb-buildbot
@ 2020-06-24 14:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-24 14:18 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3276

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        d460f6600a4452b09ee875519ebc70362863fcba

Subject of commit:
        Make queue_and_load_dwo_tu receive a dwarf2_cu

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d4/d460f6600a4452b09ee875519ebc70362863fcba/

*** 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/Fedora-i686/d4/d460f6600a4452b09ee875519ebc70362863fcba//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d4/d460f6600a4452b09ee875519ebc70362863fcba//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28  5:41 [binutils-gdb] Add dwarf2_per_objfile parameter to cutu_reader's constructors gdb-buildbot
@ 2020-06-24 11:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-24 11:16 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/3274

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/Fedora-i686/ab/ab4324907782afa676f6d8f7fe7589c99458f64b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ab/ab4324907782afa676f6d8f7fe7589c99458f64b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28  5:03 [binutils-gdb] Use bfd_get_filename instead of objfile_name in lookup_dwo_unit gdb-buildbot
@ 2020-06-24  8:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-24  8:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3273

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/Fedora-i686/31/313bad1bc60b24722cd44c196acf3482b5b63efd/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.multi/multi-kill.exp: continue processes
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 10: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 10: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 2: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 2: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 3: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 3: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 4: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 4: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 5: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 5: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 6: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 6: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 7: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 7: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 8: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 8: switch to inferior
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 9: continue to SIGKILL
PASS -> FAIL: gdb.multi/multi-kill.exp: inf 9: switch to inferior
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/31/313bad1bc60b24722cd44c196acf3482b5b63efd//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-24  6:14 [binutils-gdb] Make dwarf2_get_dwz_file take a dwarf2_per_bfd gdb-buildbot
@ 2020-06-24  6:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-24  6:14 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/3272

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        c3699833af0343d13d7d39b3c589d3ac5b930137

Subject of commit:
        Make dwarf2_get_dwz_file take a dwarf2_per_bfd

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c3/c3699833af0343d13d7d39b3c589d3ac5b930137/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c3/c3699833af0343d13d7d39b3c589d3ac5b930137//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c3/c3699833af0343d13d7d39b3c589d3ac5b930137//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-24  3:41 [binutils-gdb] Add dwarf2_per_bfd field to dwarf2_per_cu_data gdb-buildbot
@ 2020-06-24  3:41 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-24  3:41 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3271

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        1859c670e9979c1e58ed4e9d83085f732e6936f5

Subject of commit:
        Add dwarf2_per_bfd field to dwarf2_per_cu_data

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/18/1859c670e9979c1e58ed4e9d83085f732e6936f5/

*** 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 -> 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/Fedora-i686/18/1859c670e9979c1e58ed4e9d83085f732e6936f5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/18/1859c670e9979c1e58ed4e9d83085f732e6936f5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-06-23 22:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-23 22:39 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/3269

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/Fedora-i686/97/97a1449a95e34910e74ea24914f765314c2d8d1b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/97/97a1449a95e34910e74ea24914f765314c2d8d1b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27 22:31 [binutils-gdb] Remove symtab links from dwarf2_psymtab and dwarf2_per_cu_quick_data gdb-buildbot
@ 2020-06-23 15:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-23 15:03 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/3266

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/Fedora-i686/af/af758d117e1454daebc6135cb70529b9843c3437/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/af/af758d117e1454daebc6135cb70529b9843c3437//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27 20:19 [binutils-gdb] Add dwarf2_per_objfile member to DWARF batons gdb-buildbot
@ 2020-06-23  9:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-23  9:58 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/3264

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/Fedora-i686/a5/a50264baf57716993e701096fa6e466fb63e0301/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/a5/a50264baf57716993e701096fa6e466fb63e0301//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27 18:26 [binutils-gdb] Add "objfile" parameter to two partial_symtab methods gdb-buildbot
@ 2020-06-23  5:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-23  5:04 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3262

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/Fedora-i686/57/5717c425a62c8e15a5936acdfa2bac2732aeb9b4/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
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-i686/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/Fedora-i686/57/5717c425a62c8e15a5936acdfa2bac2732aeb9b4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27 14:31 [binutils-gdb] Fix PR 26000, logical bitwise error / prologue analyzer gdb-buildbot
@ 2020-06-22 23:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-22 23:46 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3260

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        f8c6d1528c19b11fdaa3ec949147280e500446e2

Subject of commit:
        Fix PR 26000, logical bitwise error / prologue analyzer

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f8/f8c6d1528c19b11fdaa3ec949147280e500446e2/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "thread apply 1 frame apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 frame apply 1 print -"
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: 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: delimiter missing due to missing space
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
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-i686/f8/f8c6d1528c19b11fdaa3ec949147280e500446e2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f8/f8c6d1528c19b11fdaa3ec949147280e500446e2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27 13:36 [binutils-gdb] Fix some duplicate test names gdb-buildbot
@ 2020-06-22 21:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-22 21:12 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/3259

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        c2b750436a9db8cf491ddeb316bc71e4b65110b6

Subject of commit:
        Fix some duplicate test names

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c2/c2b750436a9db8cf491ddeb316bc71e4b65110b6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c2/c2b750436a9db8cf491ddeb316bc71e4b65110b6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c2/c2b750436a9db8cf491ddeb316bc71e4b65110b6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27 12:40 [binutils-gdb] ld: Add --warn-textrel and obsolete --warn-shared-textrel gdb-buildbot
@ 2020-06-22 18:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-22 18:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3258

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        a6dbf402de65fe66f4ec99b56527dfd00d077cb6

Subject of commit:
        ld: Add --warn-textrel and obsolete --warn-shared-textrel

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a6/a6dbf402de65fe66f4ec99b56527dfd00d077cb6/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a6/a6dbf402de65fe66f4ec99b56527dfd00d077cb6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a6/a6dbf402de65fe66f4ec99b56527dfd00d077cb6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27  7:06 [binutils-gdb] Fix extraction of signed constants in nios2 disassembler (again) gdb-buildbot
@ 2020-06-22 16:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-22 16:09 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/3257

Author:
        Sandra Loosemore <sandra@codesourcery.com>

Commit tested:
        25e1eca8faf1c29d28e57b37d6b5e3810b7b870b

Subject of commit:
        Fix extraction of signed constants in nios2 disassembler (again).

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/25/25e1eca8faf1c29d28e57b37d6b5e3810b7b870b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/25/25e1eca8faf1c29d28e57b37d6b5e3810b7b870b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/25/25e1eca8faf1c29d28e57b37d6b5e3810b7b870b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-06-22 13:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-22 13:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3256

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/Fedora-i686/e9/e98d2e6da4512157ab749734dc872aa41830d7c8/

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/e9/e98d2e6da4512157ab749734dc872aa41830d7c8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-22  8:37 [binutils-gdb] Fix bugs in 'val and 'pos with range types gdb-buildbot
@ 2020-06-22  8:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-22  8:37 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/3254

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        0bc2354b811e913b39c288e74d7166eaa3639309

Subject of commit:
        Fix bugs in 'val and 'pos with range types

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0bc2354b811e913b39c288e74d7166eaa3639309/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0bc2354b811e913b39c288e74d7166eaa3639309//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0bc2354b811e913b39c288e74d7166eaa3639309//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26 17:54 [binutils-gdb] Use = instead of == for better portability gdb-buildbot
@ 2020-06-22  6:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-22  6:03 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3253

Author:
        Christian Biesinger via Gdb-patches <gdb-patches@sourceware.org>

Commit tested:
        0db49895f30daea6edcc57e4c5003fd02a747c2b

Subject of commit:
        Use = instead of == for better portability

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0db49895f30daea6edcc57e4c5003fd02a747c2b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0db49895f30daea6edcc57e4c5003fd02a747c2b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0db49895f30daea6edcc57e4c5003fd02a747c2b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26 14:32 [binutils-gdb] Extend the error message displayed when a plugin fails to load gdb-buildbot
@ 2020-06-22  1:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-22  1:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3251

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/Fedora-i686/9e/9e7cb4c359e6a86550bca296db617fb4c8068c1a/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/9e/9e7cb4c359e6a86550bca296db617fb4c8068c1a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26 12:47 [binutils-gdb] [gdb/testsuite] Add test-case gold-gdb-index.exp gdb-buildbot
@ 2020-06-21 22:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-21 22:35 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/3250

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/Fedora-i686/40/40d22035a7fc239ac1e944b75a2e3ee9029d1b76/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/40/40d22035a7fc239ac1e944b75a2e3ee9029d1b76//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26 11:15 [binutils-gdb] ELF: Updated comments for ET_EXEC and ET_DYN gdb-buildbot
@ 2020-06-21 20:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-21 20:02 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3249

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        68dc60e6a7cf8924a97a23d3c8a73703c2ff79d5

Subject of commit:
        ELF: Updated comments for ET_EXEC and ET_DYN

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/68/68dc60e6a7cf8924a97a23d3c8a73703c2ff79d5/

*** 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/Fedora-i686/68/68dc60e6a7cf8924a97a23d3c8a73703c2ff79d5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/68/68dc60e6a7cf8924a97a23d3c8a73703c2ff79d5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26 10:40 [binutils-gdb] [gdb/testsuite] Add target board gold-gdb-index gdb-buildbot
@ 2020-06-21 17:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-21 17:33 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/3248

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/Fedora-i686/04/043e2e02c0f4af920edca74247ff8e743126d723/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/04/043e2e02c0f4af920edca74247ff8e743126d723//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26  8:50 [binutils-gdb] gdb/testsuite: add simavr.exp board gdb-buildbot
@ 2020-06-21 12:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-21 12:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3246

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        462f72c552226823829e7d370572b7e0852d9c02

Subject of commit:
        gdb/testsuite: add simavr.exp board

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/46/462f72c552226823829e7d370572b7e0852d9c02/

*** 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/Fedora-i686/46/462f72c552226823829e7d370572b7e0852d9c02//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/46/462f72c552226823829e7d370572b7e0852d9c02//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26  7:55 [binutils-gdb] gdb/testsuite: add inferior arguments test gdb-buildbot
@ 2020-06-21 10:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-21 10:01 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/3245

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        6cf66e763aec5b2c3d99063d9cc6f7b96b4b9dc9

Subject of commit:
        gdb/testsuite: add inferior arguments test

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6c/6cf66e763aec5b2c3d99063d9cc6f7b96b4b9dc9/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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/Fedora-i686/6c/6cf66e763aec5b2c3d99063d9cc6f7b96b4b9dc9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6c/6cf66e763aec5b2c3d99063d9cc6f7b96b4b9dc9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26  7:00 [binutils-gdb] gdb/testsuite: support passing inferior arguments with native-gdbserver board gdb-buildbot
@ 2020-06-21  7:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-21  7:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3244

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/Fedora-i686/75/75d04512401cbc9cd2d9835e77b90ac3ad1de7d8/

*** 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/Fedora-i686/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/Fedora-i686/75/75d04512401cbc9cd2d9835e77b90ac3ad1de7d8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-21  3:45 [binutils-gdb] gdbsupport: Drop now unused function 'stringify_argv' gdb-buildbot
@ 2020-06-21  5:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-21  5:35 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/3243

Author:
        Michael Weghorn <m.weghorn@posteo.de>

Commit tested:
        7dbfcd6f79d9f66e317e61bac5855868f8d20043

Subject of commit:
        gdbsupport: Drop now unused function 'stringify_argv'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7d/7dbfcd6f79d9f66e317e61bac5855868f8d20043/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7d/7dbfcd6f79d9f66e317e61bac5855868f8d20043//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7d/7dbfcd6f79d9f66e317e61bac5855868f8d20043//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26  5:10 [binutils-gdb] Use construct_inferior_arguments which handles special chars gdb-buildbot
@ 2020-06-21  2:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-21  2:33 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3242

Author:
        Michael Weghorn <m.weghorn@posteo.de>

Commit tested:
        bea571ebd78ee29cb94adf648fbcda1e109e1be6

Subject of commit:
        Use construct_inferior_arguments which handles special chars

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/be/bea571ebd78ee29cb94adf648fbcda1e109e1be6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: cmd complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/be/bea571ebd78ee29cb94adf648fbcda1e109e1be6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/be/bea571ebd78ee29cb94adf648fbcda1e109e1be6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26  3:55 [binutils-gdb] nto_process_target::create_inferior: Pass args as char ** gdb-buildbot
@ 2020-06-21  0:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-21  0:01 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/3241

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/Fedora-i686/ac/ace6b9195e34cafa68964fb898d887ed15003fca/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
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-i686/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/Fedora-i686/ac/ace6b9195e34cafa68964fb898d887ed15003fca//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26  3:18 [binutils-gdb] gdbserver: Don't add extra NULL to program args gdb-buildbot
@ 2020-06-20 21:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-20 21:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3240

Author:
        Michael Weghorn <m.weghorn@posteo.de>

Commit tested:
        b69ca137aca2e4aa72f3cad60e0389019ab14116

Subject of commit:
        gdbserver: Don't add extra NULL to program args

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b6/b69ca137aca2e4aa72f3cad60e0389019ab14116/

*** 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/Fedora-i686/b6/b69ca137aca2e4aa72f3cad60e0389019ab14116//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b6/b69ca137aca2e4aa72f3cad60e0389019ab14116//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26  1:26 [binutils-gdb] gdbsupport: Adapt construct_inferior_arguments gdb-buildbot
@ 2020-06-20 16:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-20 16:34 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/3238

Author:
        Michael Weghorn <m.weghorn@posteo.de>

Commit tested:
        c699004a29093c69fc6aeed04bbd838362666676

Subject of commit:
        gdbsupport: Adapt construct_inferior_arguments

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c6/c699004a29093c69fc6aeed04bbd838362666676/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c6/c699004a29093c69fc6aeed04bbd838362666676//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c6/c699004a29093c69fc6aeed04bbd838362666676//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26  0:30 [binutils-gdb] gdb: Move construct_inferior_arguments to gdbsupport gdb-buildbot
@ 2020-06-20 14:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-20 14:04 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3237

Author:
        Michael Weghorn <m.weghorn@posteo.de>

Commit tested:
        92651b1d91a124b8c14e45adc8d007b659cc92c2

Subject of commit:
        gdb: Move construct_inferior_arguments to gdbsupport

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/92/92651b1d91a124b8c14e45adc8d007b659cc92c2/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/92/92651b1d91a124b8c14e45adc8d007b659cc92c2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/92/92651b1d91a124b8c14e45adc8d007b659cc92c2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-20 11:32 [binutils-gdb] [gdb/testsuite] Add comment in exec_is_pie gdb-buildbot
@ 2020-06-20 11:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-20 11: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/3236

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        42cf184456fb1470835b6dccd536c2d74461e7b6

Subject of commit:
        [gdb/testsuite] Add comment in exec_is_pie

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/42/42cf184456fb1470835b6dccd536c2d74461e7b6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/42/42cf184456fb1470835b6dccd536c2d74461e7b6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/42/42cf184456fb1470835b6dccd536c2d74461e7b6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-25 21:24 [binutils-gdb] [gdb/testsuite] Fix exec_is_pie with gold linker gdb-buildbot
@ 2020-06-20  6:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-20  6:34 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/3234

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        465e1b0f196faea1fc949863af023b762ef86188

Subject of commit:
        [gdb/testsuite] Fix exec_is_pie with gold linker

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/46/465e1b0f196faea1fc949863af023b762ef86188/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd 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.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/46/465e1b0f196faea1fc949863af023b762ef86188//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/46/465e1b0f196faea1fc949863af023b762ef86188//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-20  4:06 [binutils-gdb] [gdb/testsuite] Add target board gold gdb-buildbot
@ 2020-06-20  4:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-20  4:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3233

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        3c5a0e025bf0163ce6a540ac0a18a91f97e215a3

Subject of commit:
        [gdb/testsuite] Add target board gold

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3c/3c5a0e025bf0163ce6a540ac0a18a91f97e215a3/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3c/3c5a0e025bf0163ce6a540ac0a18a91f97e215a3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3c/3c5a0e025bf0163ce6a540ac0a18a91f97e215a3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-25 17:09 [binutils-gdb] gdb: make gdbarch.sh write gdbarch.{c,h} directly gdb-buildbot
@ 2020-06-19 17:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-19 17:02 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3231

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        41a77cbaadd63b92362f5ea35b2cd11f90edf170

Subject of commit:
        gdb: make gdbarch.sh write gdbarch.{c,h} directly

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/41/41a77cbaadd63b92362f5ea35b2cd11f90edf170/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/41/41a77cbaadd63b92362f5ea35b2cd11f90edf170//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/41/41a77cbaadd63b92362f5ea35b2cd11f90edf170//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-24  7:26 [binutils-gdb] gdb: remove TYPE_FIELD macro gdb-buildbot
@ 2020-06-18 10:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-18 10:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3228

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/Fedora-i686/ce/ceacbf6edf2c72aaa16280205a9bfc8513e9ed27/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ce/ceacbf6edf2c72aaa16280205a9bfc8513e9ed27//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-23 23:04 [binutils-gdb] Add completion styling gdb-buildbot
@ 2020-06-18  0:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-18  0:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3227

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/Fedora-i686/ec/eca1f90cf47a2edc1a1cd22e12c6c0f3b900654e/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.base/completion.exp: command-name completion limiting using complete command
PASS -> UNRESOLVED: gdb.base/completion.exp: command-name completion limiting using tab character
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 -> 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 -> 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 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: symbol-name completion limiting using complete command
PASS -> UNRESOLVED: gdb.base/completion.exp: symbol-name completion limiting using tab character
PASS -> UNRESOLVED: gdb.base/completion.exp: tab complete break break
PASS -> UNRESOLVED: gdb.base/completion.exp: tab complete break break.c:ma
PASS -> UNRESOLVED: gdb.base/completion.exp: tab complete break need
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
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/Fedora-i686/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/Fedora-i686/ec/eca1f90cf47a2edc1a1cd22e12c6c0f3b900654e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-23  8:08 [binutils-gdb] Fix potential segfault gdb-buildbot
@ 2020-06-17 17:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-17 17:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3225

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        c892b44730bb1a66d614fd47fabe47555ca83b3b

Subject of commit:
        Fix potential segfault

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c8/c892b44730bb1a66d614fd47fabe47555ca83b3b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/c8/c892b44730bb1a66d614fd47fabe47555ca83b3b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c8/c892b44730bb1a66d614fd47fabe47555ca83b3b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-22 23:30 [binutils-gdb] gdb: add type::fields / type::set_fields gdb-buildbot
@ 2020-06-17 12:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-17 12:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3223

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/Fedora-i686/3c/3cabb6b0694b65c7b5ed800822ca08bd899fc1d1/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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/Fedora-i686/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/Fedora-i686/3c/3cabb6b0694b65c7b5ed800822ca08bd899fc1d1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-17 10:07 [binutils-gdb] gdb: remove TYPE_NFIELDS macro gdb-buildbot
@ 2020-06-17 10:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-17 10:07 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/3222

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        1f704f761b34e145f5eabdc222301ce6e9ec9102

Subject of commit:
        gdb: remove TYPE_NFIELDS macro

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/1f/1f704f761b34e145f5eabdc222301ce6e9ec9102/

*** 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/Fedora-i686/1f/1f704f761b34e145f5eabdc222301ce6e9ec9102//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1f/1f704f761b34e145f5eabdc222301ce6e9ec9102//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-22 21:40 [binutils-gdb] gdb: add type::num_fields / type::set_num_fields gdb-buildbot
@ 2020-06-17  7:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-17  7:37 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/3221

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/Fedora-i686/5e/5e33d5f4e1a5f2c3556ee31715ddc030d039b597/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/5e/5e33d5f4e1a5f2c3556ee31715ddc030d039b597//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-22 20:18 [binutils-gdb] Remove obsolete declaration gdb-buildbot
@ 2020-06-17  5:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-17  5:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3220

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        9392ebb3bbe4a43726ee8939c5447d88c7d3c1e4

Subject of commit:
        Remove obsolete declaration

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/93/9392ebb3bbe4a43726ee8939c5447d88c7d3c1e4/

*** 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/Fedora-i686/93/9392ebb3bbe4a43726ee8939c5447d88c7d3c1e4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/93/9392ebb3bbe4a43726ee8939c5447d88c7d3c1e4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-17  2:41 [binutils-gdb] gdb: Restore old annotations behaviour when printing frame info gdb-buildbot
@ 2020-06-17  2:41 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-17  2:41 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3219

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        7c13f4e875fd5eeb0b7a1c301b4b513051822648

Subject of commit:
        gdb: Restore old annotations behaviour when printing frame info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7c13f4e875fd5eeb0b7a1c301b4b513051822648/

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7c13f4e875fd5eeb0b7a1c301b4b513051822648//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7c13f4e875fd5eeb0b7a1c301b4b513051822648//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-22  5:06 [binutils-gdb] PowerPC: downgrade FP mismatch error for shared libraries to a warning gdb-buildbot
@ 2020-06-17  0:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-17  0:03 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/3218

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/Fedora-i686/6f/6f3fe02b0b8f6865820d8889a8420190063f3235/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/6f/6f3fe02b0b8f6865820d8889a8420190063f3235//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-21 19:09 [binutils-gdb] gdb: fix -Wtautological-overlap-compare error in lm32-tdep.c gdb-buildbot
@ 2020-06-16 21:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-16 21:32 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3217

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/Fedora-i686/aa/aa370940e202a165ddc0be2fdc4383a82101a678/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/aa/aa370940e202a165ddc0be2fdc4383a82101a678//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-21 15:12 [binutils-gdb] Re: PR25993, read of freed memory gdb-buildbot
@ 2020-06-16 13:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-16 13:59 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/3214

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/Fedora-i686/04/0490dd41ae89e66efd8b3cee122c189a481269de/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/04/0490dd41ae89e66efd8b3cee122c189a481269de//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-21  2:09 [binutils-gdb] Replace "if (x) free (x)" with "free (x)", bfd gdb-buildbot
@ 2020-06-16  9:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-16  9:04 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3212

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        c95949892f6f1e2974a0fb8a5463d7b6432ac469

Subject of commit:
        Replace "if (x) free (x)" with "free (x)", bfd

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c9/c95949892f6f1e2974a0fb8a5463d7b6432ac469/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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/Fedora-i686/c9/c95949892f6f1e2974a0fb8a5463d7b6432ac469//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c9/c95949892f6f1e2974a0fb8a5463d7b6432ac469//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-16  4:14 [binutils-gdb] [PATCH v2 0/9] RISC-V: Support version controling for ISA standard extensions and CSR gdb-buildbot
@ 2020-06-16  4:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-16  4:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3210

Author:
        Nelson Chu <nelson.chu@sifive.com>

Commit tested:
        8f595e9b4fd0a3a74d53ddffd69f2825627ae5c6

Subject of commit:
        [PATCH v2 0/9] RISC-V: Support version controling for ISA standard extensions and CSR

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8f595e9b4fd0a3a74d53ddffd69f2825627ae5c6/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8f595e9b4fd0a3a74d53ddffd69f2825627ae5c6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8f595e9b4fd0a3a74d53ddffd69f2825627ae5c6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-20 16:10 [binutils-gdb] gdb/testsuite: check mmap ret val against MAP_FAILED gdb-buildbot
@ 2020-06-16  1:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-16  1:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3209

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/Fedora-i686/41/41977d16e4ee5b9ad01abf2cfce6edbfb6d79541/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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/Fedora-i686/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/Fedora-i686/41/41977d16e4ee5b9ad01abf2cfce6edbfb6d79541//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-20 14:02 [binutils-gdb] Remove bound_name static from ada-lang.c gdb-buildbot
@ 2020-06-15 20:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-15 20:26 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/3207

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        250106a76acffac0067c6618dd784f2260b56ade

Subject of commit:
        Remove bound_name static from ada-lang.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/25/250106a76acffac0067c6618dd784f2260b56ade/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/25/250106a76acffac0067c6618dd784f2260b56ade//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/25/250106a76acffac0067c6618dd784f2260b56ade//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-20 10:29 [binutils-gdb] [gdb/symtab] Handle .gdb_index in ada language mode gdb-buildbot
@ 2020-06-15 17:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-15 17:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3206

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/Fedora-i686/9a/9a0bacfb08eb87938919023915ecc0ca2ba21223/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
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-i686/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/Fedora-i686/9a/9a0bacfb08eb87938919023915ecc0ca2ba21223//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-20  6:56 [binutils-gdb] PR25993, read of freed memory gdb-buildbot
@ 2020-06-15 15:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-15 15:10 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3205

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        7b958a48e1322880f23cdb0a1c35643dd27d3ddb

Subject of commit:
        PR25993, read of freed memory

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7b/7b958a48e1322880f23cdb0a1c35643dd27d3ddb/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7b/7b958a48e1322880f23cdb0a1c35643dd27d3ddb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7b/7b958a48e1322880f23cdb0a1c35643dd27d3ddb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-20  6:01 [binutils-gdb] Power10 dcbf, sync, and wait extensions gdb-buildbot
@ 2020-06-15 12:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-15 12:30 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/3204

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/Fedora-i686/3d/3d205eb4481c3add674166f716fc052b6fdcbf2e/

*** Diff to previous build ***
==============================================
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=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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/3d/3d205eb4481c3add674166f716fc052b6fdcbf2e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-20  5:06 [binutils-gdb] PR26011, excessive memory allocation with fuzzed reloc sections gdb-buildbot
@ 2020-06-15  9:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-15  9:52 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/3203

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/Fedora-i686/3c/3c568b8afab512d12eb5adcf304e505b1bce644d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/3c/3c568b8afab512d12eb5adcf304e505b1bce644d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-15  7:16 [binutils-gdb] Use bfd_get_filename throughout gdb gdb-buildbot
@ 2020-06-15  7:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-15  7:16 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/3202

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        c7e976792002c6a2810f9bb6cc3ad210514eb650

Subject of commit:
        Use bfd_get_filename throughout gdb

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c7e976792002c6a2810f9bb6cc3ad210514eb650/

*** 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/Fedora-i686/c7/c7e976792002c6a2810f9bb6cc3ad210514eb650//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c7e976792002c6a2810f9bb6cc3ad210514eb650//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-15  4:37 [binutils-gdb] Restore missing Rust test gdb-buildbot
@ 2020-06-15  4:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-15  4:37 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/3201

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        76571211fe65c4942f3ce4e04115a0396cd2522c

Subject of commit:
        Restore missing Rust test

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/76/76571211fe65c4942f3ce4e04115a0396cd2522c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply level 0 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print "
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/76/76571211fe65c4942f3ce4e04115a0396cd2522c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/76/76571211fe65c4942f3ce4e04115a0396cd2522c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 18:43 [binutils-gdb] Fix duplicate tests in gdb.rust gdb-buildbot
@ 2020-06-14 23:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-14 23:23 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/3199

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/Fedora-i686/7d/7d874253bfe9846e8d78790bbc32a152a94aa366/

*** 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/Fedora-i686/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/Fedora-i686/7d/7d874253bfe9846e8d78790bbc32a152a94aa366//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 18:41 [binutils-gdb] Update call to target_fileio_open gdb-buildbot
@ 2020-06-14 20:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-14 20:46 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/3198

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/Fedora-i686/56/563c591bedf2e84ef812a89d573ece8546bd3c99/

*** 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=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/56/563c591bedf2e84ef812a89d573ece8546bd3c99//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 18:28 [binutils-gdb] gdb: fix off-by-one error in quirk_rust_enum gdb-buildbot
@ 2020-06-14 20:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-14 20:03 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/3197

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        f408d82c7a140268c3b7be35970c96d8385b5902

Subject of commit:
        gdb: fix off-by-one error in quirk_rust_enum

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f4/f408d82c7a140268c3b7be35970c96d8385b5902/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f4/f408d82c7a140268c3b7be35970c96d8385b5902//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f4/f408d82c7a140268c3b7be35970c96d8385b5902//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 17:51 [binutils-gdb] Make exec-file-mismatch compare build IDs gdb-buildbot
@ 2020-06-14 19:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-14 19:20 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/3196

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        98c59b527b1472b87a9ee4959c4bfae85061bc1d

Subject of commit:
        Make exec-file-mismatch compare build IDs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/98/98c59b527b1472b87a9ee4959c4bfae85061bc1d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/98/98c59b527b1472b87a9ee4959c4bfae85061bc1d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/98/98c59b527b1472b87a9ee4959c4bfae85061bc1d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 17:49 [binutils-gdb] Default gdb_bfd_open's fd parameter to -1 gdb-buildbot
@ 2020-06-14 15:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-14 15:00 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/3194

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/Fedora-i686/ad/ad80db5b9f7c95105c78d3ab439678184d1b7177/

*** 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/Fedora-i686/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/Fedora-i686/ad/ad80db5b9f7c95105c78d3ab439678184d1b7177//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 17:44 [binutils-gdb] gdb: fix -Wtautological-overlap-compare error in h8300-tdep.c gdb-buildbot
@ 2020-06-14 11:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-14 11:45 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/3193

Author:
        Yoshinori Sato <ysato@users.sourceforge.jp>

Commit tested:
        1d6ce4d31257e1ea49b3a1b257055bf8f7ff16af

Subject of commit:
        gdb: fix -Wtautological-overlap-compare error in h8300-tdep.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/1d/1d6ce4d31257e1ea49b3a1b257055bf8f7ff16af/

*** Diff to previous build ***
==============================================
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 2: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
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 -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1d/1d6ce4d31257e1ea49b3a1b257055bf8f7ff16af//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1d/1d6ce4d31257e1ea49b3a1b257055bf8f7ff16af//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 17:42 [binutils-gdb] Fix thinko in recent update to bfd_section_from_shdr gdb-buildbot
@ 2020-06-14  8:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-14  8: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/3192

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/Fedora-i686/6f/6fd1d259e98354236fafd14ec05f3d6a377ede9f/

*** 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/Fedora-i686/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/Fedora-i686/6f/6fd1d259e98354236fafd14ec05f3d6a377ede9f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 17:41 [binutils-gdb] gdb: make symfile_segment_data::segment_info an std::vector gdb-buildbot
@ 2020-06-14  5:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-14  5:17 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/3191

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/Fedora-i686/90/9005fbbb0023f212fcd797227b839f21cb8bf0a1/

*** 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/Fedora-i686/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/Fedora-i686/90/9005fbbb0023f212fcd797227b839f21cb8bf0a1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 17:40 [binutils-gdb] gdb: use std::vector to store segments in symfile_segment_data gdb-buildbot
@ 2020-06-14  2:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-14  2:04 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/3190

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/Fedora-i686/68/68b888fff3164b5e8e347d9c1ca351c366f0aac4/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/68/68b888fff3164b5e8e347d9c1ca351c366f0aac4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 17:39 [binutils-gdb] gdb: allocate symfile_segment_data with new gdb-buildbot
@ 2020-06-13 22:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-13 22:52 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/3189

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        62982abdee45cb20a7cfadb2b1bcc358655d4ad3

Subject of commit:
        gdb: allocate symfile_segment_data with new

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/62/62982abdee45cb20a7cfadb2b1bcc358655d4ad3/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/62/62982abdee45cb20a7cfadb2b1bcc358655d4ad3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/62/62982abdee45cb20a7cfadb2b1bcc358655d4ad3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 14:39 [binutils-gdb] OpenRISC BFD fixups for Glibc: gdb-buildbot
@ 2020-06-13 19:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-13 19:40 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/3188

Author:
        Stafford Horne <shorne@gmail.com>

Commit tested:
        7e94cf6cb018df7cc1311afb2b15e9f69adb60d9

Subject of commit:
        OpenRISC BFD fixups for Glibc:

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7e/7e94cf6cb018df7cc1311afb2b15e9f69adb60d9/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7e/7e94cf6cb018df7cc1311afb2b15e9f69adb60d9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7e/7e94cf6cb018df7cc1311afb2b15e9f69adb60d9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 14:02 [binutils-gdb] Fix the ARM assembler to generate a Realtime profile for armv8-r gdb-buildbot
@ 2020-06-13 16:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-13 16:26 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/3187

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/Fedora-i686/16/164446e04c89c7f5d8fd3efd7874a1af01035d72/

*** 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/Fedora-i686/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/Fedora-i686/16/164446e04c89c7f5d8fd3efd7874a1af01035d72//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 11:21 [binutils-gdb] [PATCH v3] aarch64: Emit jump slot for conditional branch to undefined symbols gdb-buildbot
@ 2020-06-13 10:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-13 10:00 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/3185

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/Fedora-i686/7e/7e05773767820b441b23a16628b55c98cb1aef46/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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=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/Fedora-i686/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/Fedora-i686/7e/7e05773767820b441b23a16628b55c98cb1aef46//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19  4:37 [binutils-gdb] Use bfd_get_filename throughout bfd gdb-buildbot
@ 2020-06-13  6:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-13  6:47 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/3184

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        765cf5f623dbc2de8c8791bce9a29fcc3492436c

Subject of commit:
        Use bfd_get_filename throughout bfd

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/76/765cf5f623dbc2de8c8791bce9a29fcc3492436c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/76/765cf5f623dbc2de8c8791bce9a29fcc3492436c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/76/765cf5f623dbc2de8c8791bce9a29fcc3492436c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-13  0:20 [binutils-gdb] Avoid short i386 register names on Solaris/x86 [PR25981] gdb-buildbot
@ 2020-06-13  0:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-13  0:20 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/3182

Author:
        Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Commit tested:
        e52a0f1bd949e1b6b6bcadc284c8f84464d46f2c

Subject of commit:
        Avoid short i386 register names on Solaris/x86 [PR25981]

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e5/e52a0f1bd949e1b6b6bcadc284c8f84464d46f2c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e5/e52a0f1bd949e1b6b6bcadc284c8f84464d46f2c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e5/e52a0f1bd949e1b6b6bcadc284c8f84464d46f2c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-12 18:05 [binutils-gdb] Fix a use-after-free bug in the BFD library when scanning a corrupt ELF file gdb-buildbot
@ 2020-06-12 18:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-12 18:05 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/3180

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        ed02cdb5b78d17429f7e873acc49d94a5a0223d8

Subject of commit:
        Fix a use-after-free bug in the BFD library when scanning a corrupt ELF file.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ed/ed02cdb5b78d17429f7e873acc49d94a5a0223d8/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-i686/ed/ed02cdb5b78d17429f7e873acc49d94a5a0223d8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ed/ed02cdb5b78d17429f7e873acc49d94a5a0223d8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-12 11:53 [binutils-gdb] ECOFF slurp_relocs thinko gdb-buildbot
@ 2020-06-12 11:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-12 11:53 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/3178

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        7a87e9c80506af4c3f658c1a796c4ad18730e46c

Subject of commit:
        ECOFF slurp_relocs thinko

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7a/7a87e9c80506af4c3f658c1a796c4ad18730e46c/

*** 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 -> 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/Fedora-i686/7a/7a87e9c80506af4c3f658c1a796c4ad18730e46c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7a/7a87e9c80506af4c3f658c1a796c4ad18730e46c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-12  8:48 [binutils-gdb] Fix the BFD library to handle Windows pathnames with more than 260 characters and UNIX style directory separators gdb-buildbot
@ 2020-06-12  8:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-12  8:48 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/3177

Author:
        Jaydeep Chauhan <jaydeepchauhan1494@gmail.com>

Commit tested:
        ca859a893931d6fad8b35cf2c20afd43422a59fe

Subject of commit:
        Fix the BFD library to handle Windows pathnames with more than 260 characters and UNIX style directory separators.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ca/ca859a893931d6fad8b35cf2c20afd43422a59fe/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "thread apply 1 frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 frame apply 1 print "
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ca/ca859a893931d6fad8b35cf2c20afd43422a59fe//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ca/ca859a893931d6fad8b35cf2c20afd43422a59fe//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-12  5:11 [binutils-gdb] Stop considering hw and sw breakpoint locations duplicates (PR gdb/25741) gdb-buildbot
@ 2020-06-12  5:11 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-12  5:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3176

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        7f32a4d5aef1891813d5e4a4bd97151797edc82d

Subject of commit:
        Stop considering hw and sw breakpoint locations duplicates (PR gdb/25741)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7f/7f32a4d5aef1891813d5e4a4bd97151797edc82d/

*** 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/Fedora-i686/7f/7f32a4d5aef1891813d5e4a4bd97151797edc82d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7f/7f32a4d5aef1891813d5e4a4bd97151797edc82d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-11 16:35 [binutils-gdb] Fix gdb.multi/multi-re-run.exp with native-gdbserver gdb-buildbot
@ 2020-06-11 16:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-11 16:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3174

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        7cfd74cfc6e14034779e6cc048c68877b7a08f88

Subject of commit:
        Fix gdb.multi/multi-re-run.exp with native-gdbserver

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7cfd74cfc6e14034779e6cc048c68877b7a08f88/

*** 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/Fedora-i686/7c/7cfd74cfc6e14034779e6cc048c68877b7a08f88//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7cfd74cfc6e14034779e6cc048c68877b7a08f88//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-11  6:54 [binutils-gdb] Remove ALL_UIS gdb-buildbot
@ 2020-06-11  6:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-11  6:54 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3171

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2dab0c7ba0d69bcc16cfe58da279ce915ef24348

Subject of commit:
        Remove ALL_UIS

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2d/2dab0c7ba0d69bcc16cfe58da279ce915ef24348/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2d/2dab0c7ba0d69bcc16cfe58da279ce915ef24348//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2d/2dab0c7ba0d69bcc16cfe58da279ce915ef24348//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-11  0:20 [binutils-gdb] Sync config with GCC gdb-buildbot
@ 2020-06-11  0:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-11  0:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3169

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        56770bdab2585be4d3171b3512d2167106dca53e

Subject of commit:
        Sync config with GCC

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/56/56770bdab2585be4d3171b3512d2167106dca53e/

*** 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/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/56/56770bdab2585be4d3171b3512d2167106dca53e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/56/56770bdab2585be4d3171b3512d2167106dca53e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-10 17:53 [binutils-gdb] gdbserver/linux-ia64-low: fix a build-breaking typo gdb-buildbot
@ 2020-06-10 17:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-10 17:53 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3167

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        8bbf03947dd594262e672c1fbc3462a81c811b6f

Subject of commit:
        gdbserver/linux-ia64-low: fix a build-breaking typo

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8b/8bbf03947dd594262e672c1fbc3462a81c811b6f/

*** 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 -> 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-i686/8b/8bbf03947dd594262e672c1fbc3462a81c811b6f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8b/8bbf03947dd594262e672c1fbc3462a81c811b6f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-10 14:40 [binutils-gdb] gdb: remove unnecessary struct typedef in sparc64-tdep.c gdb-buildbot
@ 2020-06-10 14:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-10 14:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3166

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        8f86ae1a18417e575f510d1aa7b6df2524256464

Subject of commit:
        gdb: remove unnecessary struct typedef in sparc64-tdep.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8f86ae1a18417e575f510d1aa7b6df2524256464/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8f86ae1a18417e575f510d1aa7b6df2524256464//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8f86ae1a18417e575f510d1aa7b6df2524256464//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-10 11:23 [binutils-gdb] Remove lookup_objfile_from_block gdb-buildbot
@ 2020-06-10 11:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-10 11:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3165

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        d6bc0792edf0ef423ee4604bfd4bee49654314bb

Subject of commit:
        Remove lookup_objfile_from_block

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d6/d6bc0792edf0ef423ee4604bfd4bee49654314bb/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
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=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d6/d6bc0792edf0ef423ee4604bfd4bee49654314bb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d6/d6bc0792edf0ef423ee4604bfd4bee49654314bb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-10  8:06 [binutils-gdb] Remove allocate_symbol et al gdb-buildbot
@ 2020-06-10  8:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-10  8:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3164

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        8c14c3a3735d7de43e63710b2cd3a2e89cc4e243

Subject of commit:
        Remove allocate_symbol et al

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8c14c3a3735d7de43e63710b2cd3a2e89cc4e243/

*** 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/Fedora-i686/8c/8c14c3a3735d7de43e63710b2cd3a2e89cc4e243//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8c14c3a3735d7de43e63710b2cd3a2e89cc4e243//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-10  4:54 [binutils-gdb] Update NEWS and documentation for help and apropos changes gdb-buildbot
@ 2020-06-10  4:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-10  4:54 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3163

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        5b4a1a8dbe6b15414c586d8fc6dbaecdcf4046f3

Subject of commit:
        Update NEWS and documentation for help and apropos changes.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5b/5b4a1a8dbe6b15414c586d8fc6dbaecdcf4046f3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: cmd complete "b "
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: tab complete "b "
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5b/5b4a1a8dbe6b15414c586d8fc6dbaecdcf4046f3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5b/5b4a1a8dbe6b15414c586d8fc6dbaecdcf4046f3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-10  1:37 [binutils-gdb] Ensure class_alias is only used for user-defined aliases gdb-buildbot
@ 2020-06-10  1:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-10  1:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3162

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        57b4f16e494d8abdeb0748c69e72f911b3525b44

Subject of commit:
        Ensure class_alias is only used for user-defined aliases.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/57/57b4f16e494d8abdeb0748c69e72f911b3525b44/

*** 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/Fedora-i686/57/57b4f16e494d8abdeb0748c69e72f911b3525b44//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/57/57b4f16e494d8abdeb0748c69e72f911b3525b44//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-09 19:10 [binutils-gdb] Fix/improve 'help CLASS' output gdb-buildbot
@ 2020-06-09 19:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09 19:10 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/3160

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        3b3aaacba15292f185b6e8ba5faba1ed89c9f908

Subject of commit:
        Fix/improve 'help CLASS' output

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3b/3b3aaacba15292f185b6e8ba5faba1ed89c9f908/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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/Fedora-i686/3b/3b3aaacba15292f185b6e8ba5faba1ed89c9f908//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3b/3b3aaacba15292f185b6e8ba5faba1ed89c9f908//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-09  9:20 [binutils-gdb] Fix the problems reported by prefix check of command-def-selftests.c gdb-buildbot
@ 2020-06-09  9:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09  9:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3157

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        3f4d92ebdf7f848b5ccc9e8d8e8514c64fde1183

Subject of commit:
        Fix the problems reported by prefix check of command-def-selftests.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3f4d92ebdf7f848b5ccc9e8d8e8514c64fde1183/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3f4d92ebdf7f848b5ccc9e8d8e8514c64fde1183//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3f4d92ebdf7f848b5ccc9e8d8e8514c64fde1183//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-09  2:56 [binutils-gdb] Add a selftest that detects a 'corrupted' command tree structure in GDB gdb-buildbot
@ 2020-06-09  2:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-09  2:56 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/3155

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        58e6ac70065131e82e0256f571e5277553096051

Subject of commit:
        Add a selftest that detects a 'corrupted' command tree structure in GDB.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/58/58e6ac70065131e82e0256f571e5277553096051/

*** 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 -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/58/58e6ac70065131e82e0256f571e5277553096051//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/58/58e6ac70065131e82e0256f571e5277553096051//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-08 23:40 [binutils-gdb] Fix the only incorrect case found by command_structure_invariants selftest gdb-buildbot
@ 2020-06-08 23:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-08 23:40 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/3154

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        a7b9ceb8b44cd36496e266894075e2af60c3e153

Subject of commit:
        Fix the only incorrect case found by command_structure_invariants selftest.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a7/a7b9ceb8b44cd36496e266894075e2af60c3e153/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/a7/a7b9ceb8b44cd36496e266894075e2af60c3e153//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a7/a7b9ceb8b44cd36496e266894075e2af60c3e153//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-08 20:23 [binutils-gdb] update name of several Ada fixed-point type handling functions gdb-buildbot
@ 2020-06-08 20:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-08 20:23 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/3153

Author:
        Joel Brobecker <brobecker@adacore.com>

Commit tested:
        b2188a06e4583067a503fbc271e110e814890cc1

Subject of commit:
        update name of several Ada fixed-point type handling functions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b2/b2188a06e4583067a503fbc271e110e814890cc1/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b2/b2188a06e4583067a503fbc271e110e814890cc1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b2/b2188a06e4583067a503fbc271e110e814890cc1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-08 13:47 [binutils-gdb] Don't silently skip tests if OpenCL is unsupported gdb-buildbot
@ 2020-06-08 13:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-08 13:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3151

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        163df4df08aa7b0dda75261c19832c8e66b2059c

Subject of commit:
        Don't silently skip tests if OpenCL is unsupported

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/16/163df4df08aa7b0dda75261c19832c8e66b2059c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
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-i686/16/163df4df08aa7b0dda75261c19832c8e66b2059c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/16/163df4df08aa7b0dda75261c19832c8e66b2059c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-08 10:34 [binutils-gdb] [gdb/testsuite] Rename *.exp.in to *.exp.tcl gdb-buildbot
@ 2020-06-08 10:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-08 10:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3150

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        6dbc505a74ac6bb930a4b7306e60ea3a439bb886

Subject of commit:
        [gdb/testsuite] Rename *.exp.in to *.exp.tcl

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6d/6dbc505a74ac6bb930a4b7306e60ea3a439bb886/

*** 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/Fedora-i686/6d/6dbc505a74ac6bb930a4b7306e60ea3a439bb886//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6d/6dbc505a74ac6bb930a4b7306e60ea3a439bb886//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-08  0:51 [binutils-gdb] Fix gdb.multi/multi-kill.exp gdb-buildbot
@ 2020-06-08  0:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-08  0:51 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3147

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        3c5c3649729ba3f94f9d28f10aa2270c8c7e4aa9

Subject of commit:
        Fix gdb.multi/multi-kill.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3c/3c5c3649729ba3f94f9d28f10aa2270c8c7e4aa9/

*** 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 -> 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-i686/3c/3c5c3649729ba3f94f9d28f10aa2270c8c7e4aa9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3c/3c5c3649729ba3f94f9d28f10aa2270c8c7e4aa9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-07 21:39 [binutils-gdb] Fix global variable collision in gdb.multi/multi-kill.exp gdb-buildbot
@ 2020-06-07 21:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-07 21:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3146

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        272c36b87f81fd64e5f4669730da72c39d0716b3

Subject of commit:
        Fix global variable collision in gdb.multi/multi-kill.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/27/272c36b87f81fd64e5f4669730da72c39d0716b3/

*** 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=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-i686/27/272c36b87f81fd64e5f4669730da72c39d0716b3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/27/272c36b87f81fd64e5f4669730da72c39d0716b3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-07 18:24 [binutils-gdb] Enable hardware breakpoints for gdbserver on Windows gdb-buildbot
@ 2020-06-07 18:24 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-07 18:24 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3145

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        013707794a67269dd34fd8ae6e354e982c547dc0

Subject of commit:
        Enable hardware breakpoints for gdbserver on Windows

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/01/013707794a67269dd34fd8ae6e354e982c547dc0/

*** 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/Fedora-i686/01/013707794a67269dd34fd8ae6e354e982c547dc0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/01/013707794a67269dd34fd8ae6e354e982c547dc0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-07 15:10 [binutils-gdb] Disable record btrace bts support for AMD processors gdb-buildbot
@ 2020-06-07 15:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-07 15:10 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3144

Author:
        Kevin Buettner <kevinb@redhat.com>

Commit tested:
        a51951c25813b8d6c763f51d78d3756d9ca85ee1

Subject of commit:
        Disable record btrace bts support for AMD processors

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a5/a51951c25813b8d6c763f51d78d3756d9ca85ee1/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print "
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a5/a51951c25813b8d6c763f51d78d3756d9ca85ee1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a5/a51951c25813b8d6c763f51d78d3756d9ca85ee1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-07 11:52 [binutils-gdb] gdb: infrun: consume multiple events at each pass in stop_all_threads gdb-buildbot
@ 2020-06-07 11:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-07 11:52 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3143

Author:
        Laurent Morichetti <Laurent.Morichetti@amd.com>

Commit tested:
        29d6859f0927bf92fcddb4d519379992399e2ac9

Subject of commit:
        gdb: infrun: consume multiple events at each pass in stop_all_threads

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/29/29d6859f0927bf92fcddb4d519379992399e2ac9/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/29d6859f0927bf92fcddb4d519379992399e2ac9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/29d6859f0927bf92fcddb4d519379992399e2ac9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-07  8:37 [binutils-gdb] gdb: remove TYPE_CODE macro gdb-buildbot
@ 2020-06-07  8:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-07  8:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3142

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        7813437494ac39f3aef392d06ed5416e84fe386b

Subject of commit:
        gdb: remove TYPE_CODE macro

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/78/7813437494ac39f3aef392d06ed5416e84fe386b/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/78/7813437494ac39f3aef392d06ed5416e84fe386b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/78/7813437494ac39f3aef392d06ed5416e84fe386b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-07  5:20 [binutils-gdb] gdb: add type::code / type::set_code gdb-buildbot
@ 2020-06-07  5:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-07  5:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3141

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        67607e24d0413828acdfa9bc38f6fbac40b860b9

Subject of commit:
        gdb: add type::code / type::set_code

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/67/67607e24d0413828acdfa9bc38f6fbac40b860b9/

*** 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 -> 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-i686/67/67607e24d0413828acdfa9bc38f6fbac40b860b9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/67/67607e24d0413828acdfa9bc38f6fbac40b860b9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-07  2:05 [binutils-gdb] [gdb/testsuite] Fix gdb.fortran/nested-funcs-2.exp with gdbserver gdb-buildbot
@ 2020-06-07  2:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-07  2:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3140

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        02eba61aa6cad683e96cf13f483adc04982c0c2b

Subject of commit:
        [gdb/testsuite] Fix gdb.fortran/nested-funcs-2.exp with gdbserver

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/02/02eba61aa6cad683e96cf13f483adc04982c0c2b/

*** 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/Fedora-i686/02/02eba61aa6cad683e96cf13f483adc04982c0c2b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/02/02eba61aa6cad683e96cf13f483adc04982c0c2b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-06 22:53 [binutils-gdb] [gdb/testsuite] Split up multi-exec test-cases gdb-buildbot
@ 2020-06-06 22:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-06 22:53 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3139

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        971a374783061ad1d1574508235e364dfd0fc6e2

Subject of commit:
        [gdb/testsuite] Split up multi-exec test-cases

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/97/971a374783061ad1d1574508235e364dfd0fc6e2/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/97/971a374783061ad1d1574508235e364dfd0fc6e2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/97/971a374783061ad1d1574508235e364dfd0fc6e2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-06  5:51 [binutils-gdb] gdb: introduce 'all_non_exited_process_targets' and 'switch_to_target_no_thread' gdb-buildbot
@ 2020-06-06  5:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-06  5:51 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/3136

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        d890404b63b8a0b6c28212388f21421d029f6ad2

Subject of commit:
        gdb: introduce 'all_non_exited_process_targets' and 'switch_to_target_no_thread'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d8/d890404b63b8a0b6c28212388f21421d029f6ad2/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d8/d890404b63b8a0b6c28212388f21421d029f6ad2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d8/d890404b63b8a0b6c28212388f21421d029f6ad2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-05  3:09 [binutils-gdb] gdb/infrun: extract out a code piece into 'mark_non_executing_threads' function gdb-buildbot
@ 2020-06-05  3:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-05  3:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3134

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        293b3ebcba93960b4e39b27eeddaa4a01f024d0c

Subject of commit:
        gdb/infrun: extract out a code piece into 'mark_non_executing_threads' function

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/29/293b3ebcba93960b4e39b27eeddaa4a01f024d0c/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/293b3ebcba93960b4e39b27eeddaa4a01f024d0c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/293b3ebcba93960b4e39b27eeddaa4a01f024d0c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-04 15:53 [binutils-gdb] gdb/infrun: move a 'regcache_read_pc' call down to first use gdb-buildbot
@ 2020-06-04 15:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-04 15:53 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/3132

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        7ca9b62a2b63ae04d554053c2a2053d13a9d8c92

Subject of commit:
        gdb/infrun: move a 'regcache_read_pc' call down to first use

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7ca9b62a2b63ae04d554053c2a2053d13a9d8c92/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7ca9b62a2b63ae04d554053c2a2053d13a9d8c92//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7ca9b62a2b63ae04d554053c2a2053d13a9d8c92//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-04 11:55 [binutils-gdb] gdb: protect some 'regcache_read_pc' calls gdb-buildbot
@ 2020-06-04 11:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-04 11:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3131

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        fc75c28ba1ea7353fb6e1e5904c5703a48504b67

Subject of commit:
        gdb: protect some 'regcache_read_pc' calls

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/fc/fc75c28ba1ea7353fb6e1e5904c5703a48504b67/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fc/fc75c28ba1ea7353fb6e1e5904c5703a48504b67//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fc/fc75c28ba1ea7353fb6e1e5904c5703a48504b67//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-04  7:55 [binutils-gdb] RISC-V: Add elfNN_riscv_mkobject to initialize RISC-V tdata gdb-buildbot
@ 2020-06-04  7:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-04  7:55 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/3130

Author:
        Nelson Chu <nelson.chu@sifive.com>

Commit tested:
        fc46e8bd351bf9b4eef5110f5ef6f30f8bd57739

Subject of commit:
        RISC-V: Add elfNN_riscv_mkobject to initialize RISC-V tdata.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/fc/fc46e8bd351bf9b4eef5110f5ef6f30f8bd57739/

*** Diff to previous build ***
==============================================
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-i686/fc/fc46e8bd351bf9b4eef5110f5ef6f30f8bd57739//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fc/fc46e8bd351bf9b4eef5110f5ef6f30f8bd57739//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-04  3:55 [binutils-gdb] Remove ada-lang.c:align_value gdb-buildbot
@ 2020-06-04  3:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-04  3:55 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/3129

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        a89febbd83b48439bc447d0b1699e30a70f56936

Subject of commit:
        Remove ada-lang.c:align_value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a8/a89febbd83b48439bc447d0b1699e30a70f56936/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a8/a89febbd83b48439bc447d0b1699e30a70f56936//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a8/a89febbd83b48439bc447d0b1699e30a70f56936//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-03 23:54 [binutils-gdb] gdb: update the copyright year in async-event.[ch] gdb-buildbot
@ 2020-06-03 23:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-03 23:54 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3128

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        f7e23710fcb7133a3bbe7795ad0ddd2defca358a

Subject of commit:
        gdb: update the copyright year in async-event.[ch]

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f7/f7e23710fcb7133a3bbe7795ad0ddd2defca358a/

*** 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=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f7/f7e23710fcb7133a3bbe7795ad0ddd2defca358a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f7/f7e23710fcb7133a3bbe7795ad0ddd2defca358a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-03 19:55 [binutils-gdb] Sync config and libiberty with GCC gdb-buildbot
@ 2020-06-03 19:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-03 19:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3127

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        90d00bbd9c514a0fea52d9dc44b98ce1dd564094

Subject of commit:
        Sync config and libiberty with GCC

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/90/90d00bbd9c514a0fea52d9dc44b98ce1dd564094/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/90/90d00bbd9c514a0fea52d9dc44b98ce1dd564094//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/90/90d00bbd9c514a0fea52d9dc44b98ce1dd564094//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-06-03 15:53 [binutils-gdb] gdb/testsuite: Disable path and duplicate checks when parallel testing gdb-buildbot
@ 2020-06-03 15:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-06-03 15:53 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/3126

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        843f4d93576eef02139f7b1b3fa1cea7b0f286f1

Subject of commit:
        gdb/testsuite: Disable path and duplicate checks when parallel testing

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/84/843f4d93576eef02139f7b1b3fa1cea7b0f286f1/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/catch_ex_std.exp: gnatlink foo
new KFAIL: gdb.ada/funcall_ref.exp: scenario=minimal: ptype get
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/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.arch/i386-prologue.exp: saved registers in gdb1718
new FAIL: gdb.base/all-architectures-6.exp: all passed
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Linux: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=PikeOS: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SDE: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=auto: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=default: set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=none: set osabi
new KFAIL: gdb.base/argv0-symlink.exp: kept directory symbolic link name
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.base/float128.exp: print large128
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
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= "-fPIE" "ldflags=-pie" : 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: 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/style.exp: frame when width=20
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 KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/many-args.exp: check passing many structures
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 KPASS: gdb.cp/step-and-next-inline.exp: no_header: next step 1
new FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 2
new KPASS: gdb.cp/step-and-next-inline.exp: no_header: next step 3
new KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 4
new KFAIL: gdb.cp/step-and-next-inline.exp: no_header: stepping tests
new 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
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.fortran/array-bounds.exp: print &bar
new KFAIL: gdb.fortran/array-bounds.exp: print &foo
new KPASS: gdb.fortran/derived-type-striding.exp: p point_dimension
new KPASS: gdb.fortran/derived-type-striding.exp: p point_mixed_dimension
new KFAIL: gdb.fortran/function-calls.exp: p one_arg_value
new FAIL: gdb.fortran/info-modules.exp: info module variables: check for entry 'info-types.f90', '35', 'Type __vtype_mod1_M1t1 mod1::__vtab_mod1_M1t1;'
new FAIL: gdb.fortran/info-modules.exp: info module variables: check for entry 'info-types.f90', '35', 'Type m1t1 mod1::__def_init_mod1_M1t1;'
new FAIL: gdb.fortran/vla-ptype.exp: ptype vla1
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
new FAIL: gdb.fortran/vla-value.exp: print member in non-allocated vla1
new FAIL: gdb.fortran/vla-value.exp: set member in non-allocated vla1
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance selftest
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 KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new UNRESOLVED: gdb.pascal/floats.exp: setting breakpoint at floats.pas:34
new FAIL: gdb.pascal/floats.exp: setting breakpoint at floats.pas:41
new UNRESOLVED: gdb.pascal/gdb11492.exp: setting breakpoint at gdb11492.pas:35
new FAIL: gdb.pascal/hello.exp: setting breakpoint at hello.pas:10
new UNRESOLVED: gdb.pascal/hello.exp: setting breakpoint at hello.pas:8
new UNRESOLVED: gdb.pascal/integers.exp: setting breakpoint at integers.pas:38
new FAIL: gdb.pascal/integers.exp: setting breakpoint at integers.pas:46
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function one
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main one
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main two
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function one
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function two
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function one
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function two
new FAIL: gdb.reverse/solib-precsave.exp: run until end part two
new FAIL: gdb.reverse/solib-reverse.exp: reverse-next over solib function one
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step back to main one
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step back to main two
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function one
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function two
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function one
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function two
new FAIL: gdb.reverse/solib-reverse.exp: run until end part two
new FAIL: gdb.reverse/step-precsave.exp: reverse next over call
new FAIL: gdb.reverse/step-precsave.exp: reverse next test 1
new FAIL: gdb.reverse/step-precsave.exp: reverse next test 2
new FAIL: gdb.reverse/step-precsave.exp: reverse step out of called fn
new FAIL: gdb.reverse/step-precsave.exp: reverse step test 1
new FAIL: gdb.reverse/step-precsave.exp: reverse step test 2
new FAIL: gdb.reverse/step-precsave.exp: reverse stepi from a function call
new FAIL: gdb.reverse/step-precsave.exp: simple reverse stepi
new FAIL: gdb.reverse/step-reverse.exp: reverse next over call
new FAIL: gdb.reverse/step-reverse.exp: reverse next test 1
new FAIL: gdb.reverse/step-reverse.exp: reverse next test 2
new FAIL: gdb.reverse/step-reverse.exp: reverse step out of called fn
new FAIL: gdb.reverse/step-reverse.exp: reverse step test 1
new FAIL: gdb.reverse/step-reverse.exp: reverse step test 2
new FAIL: gdb.reverse/step-reverse.exp: reverse stepi from a function call
new FAIL: gdb.reverse/step-reverse.exp: simple reverse stepi
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new FAIL: gdb.threads/create-fail.exp: iteration 10: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 1: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 2: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 3: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 4: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 5: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 6: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 7: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 8: run till end
new FAIL: gdb.threads/create-fail.exp: iteration 9: run till end
new FAIL: gdb.threads/killed-outside.exp: prompt after first continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/tls.exp: print a_thread_local
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/84/843f4d93576eef02139f7b1b3fa1cea7b0f286f1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/84/843f4d93576eef02139f7b1b3fa1cea7b0f286f1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-31  8:52 [binutils-gdb] gdb/testsuite: Detect and warn if paths are used in test names gdb-buildbot
@ 2020-05-31  8:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-31  8:52 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3106

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        34584c091bb4414cea6531269f435b2938b2d8e6

Subject of commit:
        gdb/testsuite: Detect and warn if paths are used in test names

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/34/34584c091bb4414cea6531269f435b2938b2d8e6/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/34/34584c091bb4414cea6531269f435b2938b2d8e6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/34/34584c091bb4414cea6531269f435b2938b2d8e6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-31  4:52 [binutils-gdb] Fix Ada value printing on PPC64 gdb-buildbot
@ 2020-05-31  4:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-31  4:52 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3105

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        5eb68a39a2c2908fc01f03e79daed72ba85dc14c

Subject of commit:
        Fix Ada value printing on PPC64

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5e/5eb68a39a2c2908fc01f03e79daed72ba85dc14c/

*** Diff to previous build ***
==============================================
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 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 -> 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/Fedora-i686/5e/5eb68a39a2c2908fc01f03e79daed72ba85dc14c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5e/5eb68a39a2c2908fc01f03e79daed72ba85dc14c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-31  0:52 [binutils-gdb] [gdb/testsuite] Change kfail into xfail in gdb.ada/packed_tagged.exp gdb-buildbot
@ 2020-05-31  0:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-31  0:52 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3104

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        e000211765b57e0a1835f2ecea250dd51878fa5f

Subject of commit:
        [gdb/testsuite] Change kfail into xfail in gdb.ada/packed_tagged.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e000211765b57e0a1835f2ecea250dd51878fa5f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e000211765b57e0a1835f2ecea250dd51878fa5f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e000211765b57e0a1835f2ecea250dd51878fa5f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-30 16:54 [binutils-gdb] [gdb/testsuite] Fix gdb.cp/cpexprs-debug-types.exp inclusion gdb-buildbot
@ 2020-05-30 16:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-30 16:54 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/3102

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        113ee09a649a5e192408a10286b95e89bc48706a

Subject of commit:
        [gdb/testsuite] Fix gdb.cp/cpexprs-debug-types.exp inclusion

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/11/113ee09a649a5e192408a10286b95e89bc48706a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/11/113ee09a649a5e192408a10286b95e89bc48706a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/11/113ee09a649a5e192408a10286b95e89bc48706a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-30 12:56 [binutils-gdb] Clean-up gdb.ada test names gdb-buildbot
@ 2020-05-30 12:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-30 12:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3101

Author:
        Keith Seitz <keiths@redhat.com>

Commit tested:
        ba3e70b008d63b13207339443ad3b9a61ab996bc

Subject of commit:
        Clean-up gdb.ada test names

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ba/ba3e70b008d63b13207339443ad3b9a61ab996bc/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ba/ba3e70b008d63b13207339443ad3b9a61ab996bc//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ba/ba3e70b008d63b13207339443ad3b9a61ab996bc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-30  4:59 [binutils-gdb] [gdb/symtab] Fix incomplete CU list assert in .debug_names gdb-buildbot
@ 2020-05-30  4:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-30  4:59 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/3099

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        3ee6bb113afd87a408dd8551768d801d04556ffd

Subject of commit:
        [gdb/symtab] Fix incomplete CU list assert in .debug_names

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3e/3ee6bb113afd87a408dd8551768d801d04556ffd/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3e/3ee6bb113afd87a408dd8551768d801d04556ffd//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3e/3ee6bb113afd87a408dd8551768d801d04556ffd//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-30  0:59 [binutils-gdb] Power10 VSX scalar min-max-compare quad precision operations gdb-buildbot
@ 2020-05-30  0:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-30  0:59 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/3098

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        3b646889b0f71fda1e46bde8206d4d6aba7f5387

Subject of commit:
        Power10 VSX scalar min-max-compare quad precision operations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3b/3b646889b0f71fda1e46bde8206d4d6aba7f5387/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3b/3b646889b0f71fda1e46bde8206d4d6aba7f5387//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3b/3b646889b0f71fda1e46bde8206d4d6aba7f5387//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 21:00 [binutils-gdb] Power10 VSX load/store rightmost element operations gdb-buildbot
@ 2020-05-29 21:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-29 21:00 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/3097

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        9cc4ce88316e666fd5af0fbc1ea110a7dc42adb0

Subject of commit:
        Power10 VSX load/store rightmost element operations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9c/9cc4ce88316e666fd5af0fbc1ea110a7dc42adb0/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9c/9cc4ce88316e666fd5af0fbc1ea110a7dc42adb0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9c/9cc4ce88316e666fd5af0fbc1ea110a7dc42adb0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29 17:00 [binutils-gdb] Power10 test lsb by byte operation gdb-buildbot
@ 2020-05-29 17:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-29 17:00 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3096

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        5d57bc3ff934df1136daa19bbec45e155114ada3

Subject of commit:
        Power10 test lsb by byte operation

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5d/5d57bc3ff934df1136daa19bbec45e155114ada3/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5d/5d57bc3ff934df1136daa19bbec45e155114ada3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5d/5d57bc3ff934df1136daa19bbec45e155114ada3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-29  4:58 [binutils-gdb] Power10 bit manipulation operations gdb-buildbot
@ 2020-05-29  4:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-29  4:58 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/3093

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        ec40e91c77ecf4ca853577aa7d68bdaf5aeedfd5

Subject of commit:
        Power10 bit manipulation operations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ec/ec40e91c77ecf4ca853577aa7d68bdaf5aeedfd5/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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: tab complete "b 'cpls.cc':ns_incomplete_scope_colon_test::"
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ec/ec40e91c77ecf4ca853577aa7d68bdaf5aeedfd5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ec/ec40e91c77ecf4ca853577aa7d68bdaf5aeedfd5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28 16:57 [binutils-gdb] Power10 Reduced precision outer product operations gdb-buildbot
@ 2020-05-28 16:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-28 16:57 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3090

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        aa3c112fab5db4a90703442f65b743857e50d2ac

Subject of commit:
        Power10 Reduced precision outer product operations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/aa/aa3c112fab5db4a90703442f65b743857e50d2ac/

*** Diff to previous build ***
==============================================
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 1: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
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 -> 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-i686/aa/aa3c112fab5db4a90703442f65b743857e50d2ac//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/aa/aa3c112fab5db4a90703442f65b743857e50d2ac//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28 12:55 [binutils-gdb] Power10 SIMD permute class operations gdb-buildbot
@ 2020-05-28 12:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-28 12:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3089

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        6edbfd3beb15105dfe5c59ee3b22e3daefaea509

Subject of commit:
        Power10 SIMD permute class operations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6e/6edbfd3beb15105dfe5c59ee3b22e3daefaea509/

*** 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/Fedora-i686/6e/6edbfd3beb15105dfe5c59ee3b22e3daefaea509//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6e/6edbfd3beb15105dfe5c59ee3b22e3daefaea509//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28  8:54 [binutils-gdb] Power10 128-bit binary integer operations gdb-buildbot
@ 2020-05-28  8:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-28  8:54 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3088

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        c7d7aea2f5fadff84eee78aaa0b1830016d26319

Subject of commit:
        Power10 128-bit binary integer operations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c7d7aea2f5fadff84eee78aaa0b1830016d26319/

*** 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/Fedora-i686/c7/c7d7aea2f5fadff84eee78aaa0b1830016d26319//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c7d7aea2f5fadff84eee78aaa0b1830016d26319//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28  4:54 [binutils-gdb] Power10 VSX 32-byte storage access gdb-buildbot
@ 2020-05-28  4:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-28  4:54 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3087

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        94ba9882d5acfdc38267a8a822a8b0b8eb3e44ef

Subject of commit:
        Power10 VSX 32-byte storage access

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/94/94ba9882d5acfdc38267a8a822a8b0b8eb3e44ef/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "print "
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "print "
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/94/94ba9882d5acfdc38267a8a822a8b0b8eb3e44ef//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/94/94ba9882d5acfdc38267a8a822a8b0b8eb3e44ef//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-28  0:53 [binutils-gdb] Power10 vector integer multiply, divide, modulo insns gdb-buildbot
@ 2020-05-28  0:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-28  0:53 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3086

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        f4791f1afad449b81804cb6b62ed238603592d1b

Subject of commit:
        Power10 vector integer multiply, divide, modulo insns

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f4/f4791f1afad449b81804cb6b62ed238603592d1b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f4/f4791f1afad449b81804cb6b62ed238603592d1b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f4/f4791f1afad449b81804cb6b62ed238603592d1b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27 20:15 [binutils-gdb] Power10 byte reverse instructions gdb-buildbot
@ 2020-05-27 20:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-27 20:15 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/3085

Author:
        Peter Bergner <bergner@linux.ibm.com>

Commit tested:
        3ff0a5ba6458db28b5f0bc28afc0678a247357c0

Subject of commit:
        Power10 byte reverse instructions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3ff0a5ba6458db28b5f0bc28afc0678a247357c0/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3ff0a5ba6458db28b5f0bc28afc0678a247357c0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3ff0a5ba6458db28b5f0bc28afc0678a247357c0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27 17:15 [binutils-gdb] Power10 Copy/Paste Extensions gdb-buildbot
@ 2020-05-27 17:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-27 17:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3084

Author:
        Peter Bergner <bergner@linux.ibm.com>

Commit tested:
        afef4fe97598e78acfaa8dc7cf06eebff442dedb

Subject of commit:
        Power10 Copy/Paste Extensions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/af/afef4fe97598e78acfaa8dc7cf06eebff442dedb/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/af/afef4fe97598e78acfaa8dc7cf06eebff442dedb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/af/afef4fe97598e78acfaa8dc7cf06eebff442dedb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27 12:31 [binutils-gdb] Power10 Add new L operand to the slbiag instruction gdb-buildbot
@ 2020-05-27 12:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-27 12:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3083

Author:
        Peter Bergner <bergner@linux.ibm.com>

Commit tested:
        1224c05de4d662639e9da6bfdc4f89de4cb1de6c

Subject of commit:
        Power10 Add new L operand to the slbiag instruction

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/12/1224c05de4d662639e9da6bfdc4f89de4cb1de6c/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/12/1224c05de4d662639e9da6bfdc4f89de4cb1de6c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/12/1224c05de4d662639e9da6bfdc4f89de4cb1de6c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27  8:30 [binutils-gdb] PowerPC Default disassembler to -Mpower10 gdb-buildbot
@ 2020-05-27  8:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-27  8:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3082

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        6bbb0c0595660e6bc7477126a5b1adaf5387d006

Subject of commit:
        PowerPC Default disassembler to -Mpower10

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6bbb0c0595660e6bc7477126a5b1adaf5387d006/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6bbb0c0595660e6bc7477126a5b1adaf5387d006//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6bbb0c0595660e6bc7477126a5b1adaf5387d006//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27  4:31 [binutils-gdb] PowerPC Rename powerxx to power10 gdb-buildbot
@ 2020-05-27  4:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-27  4:31 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/3081

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        7c1f42273567c30e17e1363897ce5c6d0764c643

Subject of commit:
        PowerPC Rename powerxx to power10

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7c1f42273567c30e17e1363897ce5c6d0764c643/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7c1f42273567c30e17e1363897ce5c6d0764c643//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7c1f42273567c30e17e1363897ce5c6d0764c643//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-27  0:29 [binutils-gdb] Updated French translation for the ld sub-directory and an update Spanish translation for the opcodes subdirectory gdb-buildbot
@ 2020-05-27  0:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-27  0:29 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3080

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        73199c2b7a3cb81bd65778386c5b97b4f3b86534

Subject of commit:
        Updated French translation for the ld sub-directory and an update Spanish translation for the opcodes subdirectory.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/73/73199c2b7a3cb81bd65778386c5b97b4f3b86534/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: cmd complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
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/Fedora-i686/73/73199c2b7a3cb81bd65778386c5b97b4f3b86534//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/73/73199c2b7a3cb81bd65778386c5b97b4f3b86534//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26 20:26 [binutils-gdb] PR25961, buffer overflow in coff_swap_aux_in gdb-buildbot
@ 2020-05-26 20:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-26 20:26 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/3079

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        4d5acb1ea570f04f8020338bad6918dfe76b785c

Subject of commit:
        PR25961, buffer overflow in coff_swap_aux_in

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4d/4d5acb1ea570f04f8020338bad6918dfe76b785c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed 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 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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4d/4d5acb1ea570f04f8020338bad6918dfe76b785c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4d/4d5acb1ea570f04f8020338bad6918dfe76b785c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26 16:06 [binutils-gdb] gdb/fortran: Allow Flang MAIN_ in Fortran testing gdb-buildbot
@ 2020-05-26 16:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-26 16:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3078

Author:
        Alok Kumar Sharma <AlokKumar.Sharma@amd.com>

Commit tested:
        86cd6bc8f69613d81a2024d7d3436b774a4039cd

Subject of commit:
        gdb/fortran: Allow Flang MAIN_ in Fortran testing

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/86/86cd6bc8f69613d81a2024d7d3436b774a4039cd/

*** Diff to previous build ***
==============================================
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=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/Fedora-i686/86/86cd6bc8f69613d81a2024d7d3436b774a4039cd//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/86/86cd6bc8f69613d81a2024d7d3436b774a4039cd//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-26  2:43 [binutils-gdb] [gdb] Fix catch throw regexp matching gdb-buildbot
@ 2020-05-26  2:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-26  2:43 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3076

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        4343499695830fbd4bfe75058fc5570e280ba831

Subject of commit:
        [gdb] Fix catch throw regexp matching

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/43/4343499695830fbd4bfe75058fc5570e280ba831/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print "
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/Fedora-i686/43/4343499695830fbd4bfe75058fc5570e280ba831//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/43/4343499695830fbd4bfe75058fc5570e280ba831//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-25 22:44 [binutils-gdb] Change server_command to bool gdb-buildbot
@ 2020-05-25 22:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-25 22:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3075

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2f78cffc1671188924ab3ec46a6a962894add49a

Subject of commit:
        Change server_command to bool

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2f/2f78cffc1671188924ab3ec46a6a962894add49a/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2f/2f78cffc1671188924ab3ec46a6a962894add49a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2f/2f78cffc1671188924ab3ec46a6a962894add49a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-25 18:44 [binutils-gdb] Fix for the complaint observed when symbol reading due to unsupported .debug_names form gdb-buildbot
@ 2020-05-25 18:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-25 18:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3074

Author:
        nitachra <Nitika.Achra@amd.com>

Commit tested:
        6dc55ce97db90a9e6f201d67ca05608e19287ba1

Subject of commit:
        Fix for the complaint observed when symbol reading due to unsupported .debug_names form

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6d/6dc55ce97db90a9e6f201d67ca05608e19287ba1/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6d/6dc55ce97db90a9e6f201d67ca05608e19287ba1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6d/6dc55ce97db90a9e6f201d67ca05608e19287ba1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-25 14:46 [binutils-gdb] Don't re-process a DIE in read_lexical_block_scope gdb-buildbot
@ 2020-05-25 14:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-25 14:46 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/3073

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        4f7bc5edbd3ffaad52022849d6263d982c23ff3c

Subject of commit:
        Don't re-process a DIE in read_lexical_block_scope

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4f/4f7bc5edbd3ffaad52022849d6263d982c23ff3c/

*** Diff to previous build ***
==============================================
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 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 -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4f/4f7bc5edbd3ffaad52022849d6263d982c23ff3c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4f/4f7bc5edbd3ffaad52022849d6263d982c23ff3c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-25 10:46 [binutils-gdb] More C++-ification for struct display gdb-buildbot
@ 2020-05-25 10:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-25 10:46 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/3072

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        8be4b118a9343197291d23c666f6a8ad24bce76a

Subject of commit:
        More C++-ification for struct display

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8b/8be4b118a9343197291d23c666f6a8ad24bce76a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8b/8be4b118a9343197291d23c666f6a8ad24bce76a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8b/8be4b118a9343197291d23c666f6a8ad24bce76a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-25  6:45 [binutils-gdb] Remove ALL_PSPACES gdb-buildbot
@ 2020-05-25  6:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-25  6:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3071

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        94c93c35b50d0783fdfda277508d0ae6c3e372fb

Subject of commit:
        Remove ALL_PSPACES

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/94/94c93c35b50d0783fdfda277508d0ae6c3e372fb/

*** Diff to previous build ***
==============================================
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: tab complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd 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 function_with_labels
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/94/94c93c35b50d0783fdfda277508d0ae6c3e372fb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/94/94c93c35b50d0783fdfda277508d0ae6c3e372fb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-25  2:47 [binutils-gdb] Remove ALL_SO_LIBS and so_list_head gdb-buildbot
@ 2020-05-25  2:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-25  2:47 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/3070

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        a1fd1ac9def557cbb7570cf90178a00cb26e7fef

Subject of commit:
        Remove ALL_SO_LIBS and so_list_head

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a1/a1fd1ac9def557cbb7570cf90178a00cb26e7fef/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a1/a1fd1ac9def557cbb7570cf90178a00cb26e7fef//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a1/a1fd1ac9def557cbb7570cf90178a00cb26e7fef//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-24 18:50 [binutils-gdb] Speed up psymbol reading by removing a copy gdb-buildbot
@ 2020-05-24 18:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-24 18:50 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3068

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        596dc4adfff347b4d8dc1f7e4eb57b8f2f342281

Subject of commit:
        Speed up psymbol reading by removing a copy

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/59/596dc4adfff347b4d8dc1f7e4eb57b8f2f342281/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: all with invalid regexp: run until breakpoint in 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/Fedora-i686/59/596dc4adfff347b4d8dc1f7e4eb57b8f2f342281//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/59/596dc4adfff347b4d8dc1f7e4eb57b8f2f342281//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-24 14:50 [binutils-gdb] [gdb] Fix stepping over fork with follow-fork-mode child and gcc-8 gdb-buildbot
@ 2020-05-24 14:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-24 14:50 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/3067

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        bf4cb9bee210298c813f87aae005432d2e934449

Subject of commit:
        [gdb] Fix stepping over fork with follow-fork-mode child and gcc-8

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/bf/bf4cb9bee210298c813f87aae005432d2e934449/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bf/bf4cb9bee210298c813f87aae005432d2e934449//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bf/bf4cb9bee210298c813f87aae005432d2e934449//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-24 10:52 [binutils-gdb] [gdb/testsuite] Add gdb.dwarf2/clang-debug-names.c gdb-buildbot
@ 2020-05-24 10:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-24 10:52 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/3066

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        283cb58c4ddb8a3dc7a014f5c6a41789fd7de939

Subject of commit:
        [gdb/testsuite] Add gdb.dwarf2/clang-debug-names.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/28/283cb58c4ddb8a3dc7a014f5c6a41789fd7de939/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.dwarf2/clang-debug-names.exp: ptype main
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/28/283cb58c4ddb8a3dc7a014f5c6a41789fd7de939//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/28/283cb58c4ddb8a3dc7a014f5c6a41789fd7de939//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-24  6:53 [binutils-gdb] gdb: small cleanup of async-event.c structs gdb-buildbot
@ 2020-05-24  6:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-24  6:53 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/3065

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        a1b68f2834dac97611e09b8b751ba68a78c3c467

Subject of commit:
        gdb: small cleanup of async-event.c structs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a1/a1b68f2834dac97611e09b8b751ba68a78c3c467/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a1/a1b68f2834dac97611e09b8b751ba68a78c3c467//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a1/a1b68f2834dac97611e09b8b751ba68a78c3c467//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-24  2:54 [binutils-gdb] gdb: remove TYPE_DYN_PROP_LIST macro gdb-buildbot
@ 2020-05-24  2:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-24  2:54 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3064

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        98d48915d987c577c34e5516040ab04c0dab6baa

Subject of commit:
        gdb: remove TYPE_DYN_PROP_LIST macro

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/98/98d48915d987c577c34e5516040ab04c0dab6baa/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/98/98d48915d987c577c34e5516040ab04c0dab6baa//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/98/98d48915d987c577c34e5516040ab04c0dab6baa//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-23 18:54 [binutils-gdb] gdb: make add_dyn_prop a method of struct type gdb-buildbot
@ 2020-05-23 18:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-23 18:54 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/3062

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        5c54719c22b14f526e72be39a793657ac73d36c5

Subject of commit:
        gdb: make add_dyn_prop a method of struct type

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5c/5c54719c22b14f526e72be39a793657ac73d36c5/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5c/5c54719c22b14f526e72be39a793657ac73d36c5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5c/5c54719c22b14f526e72be39a793657ac73d36c5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-23 14:55 [binutils-gdb] gdb: make get_dyn_prop a method of struct type gdb-buildbot
@ 2020-05-23 14:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-23 14:55 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/3061

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        24e99c6c3c78e38a9919c9f8e8b831713f8303a3

Subject of commit:
        gdb: make get_dyn_prop a method of struct type

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/24/24e99c6c3c78e38a9919c9f8e8b831713f8303a3/

*** 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 -> 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-i686/24/24e99c6c3c78e38a9919c9f8e8b831713f8303a3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/24/24e99c6c3c78e38a9919c9f8e8b831713f8303a3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-23 10:56 [binutils-gdb] gdb: remove main_type::flag_static gdb-buildbot
@ 2020-05-23 10:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-23 10:56 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/3060

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        0d4bf016945ee220b95d91674e5375eb652972d4

Subject of commit:
        gdb: remove main_type::flag_static

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0d4bf016945ee220b95d91674e5375eb652972d4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0d4bf016945ee220b95d91674e5375eb652972d4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0d4bf016945ee220b95d91674e5375eb652972d4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-23  2:56 [binutils-gdb] [gdb/testsuite] Fix gdb.reverse/consecutive-{precsave, reverse}.exp with gcc-8 gdb-buildbot
@ 2020-05-23  2:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-23  2:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3058

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        24fe640b4d2cdb3914254afe2cd02aa31242e4db

Subject of commit:
        [gdb/testsuite] Fix gdb.reverse/consecutive-{precsave,reverse}.exp with gcc-8

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/24/24fe640b4d2cdb3914254afe2cd02aa31242e4db/

*** 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/Fedora-i686/24/24fe640b4d2cdb3914254afe2cd02aa31242e4db//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/24/24fe640b4d2cdb3914254afe2cd02aa31242e4db//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-22 22:57 [binutils-gdb] [gdb/testsuite] Fix gdb.base/watchpoint-reuse-slot.exp with gcc-8 gdb-buildbot
@ 2020-05-22 22:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-22 22:57 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3057

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        0d8683a32122f0027d2ab64082d1f9fced98d599

Subject of commit:
        [gdb/testsuite] Fix gdb.base/watchpoint-reuse-slot.exp with gcc-8

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0d8683a32122f0027d2ab64082d1f9fced98d599/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0d8683a32122f0027d2ab64082d1f9fced98d599//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0d8683a32122f0027d2ab64082d1f9fced98d599//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-22 19:00 [binutils-gdb] [gdb/testsuite] Fix cur_addr update in gdb.base/watchpoint-reuse-slot.exp gdb-buildbot
@ 2020-05-22 19:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-22 19:00 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/3056

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        b8983c46637eaafe808f9c5b3f95c10e1f824402

Subject of commit:
        [gdb/testsuite] Fix cur_addr update in gdb.base/watchpoint-reuse-slot.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b8/b8983c46637eaafe808f9c5b3f95c10e1f824402/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b8/b8983c46637eaafe808f9c5b3f95c10e1f824402//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b8/b8983c46637eaafe808f9c5b3f95c10e1f824402//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-22 15:01 [binutils-gdb] [gdb/testsuite] Fix gdb.base/store.exp with gcc-10 gdb-buildbot
@ 2020-05-22 15:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-22 15:01 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3055

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        abf6d805a0dfa792fdf232dabd7de18d2fe20834

Subject of commit:
        [gdb/testsuite] Fix gdb.base/store.exp with gcc-10

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ab/abf6d805a0dfa792fdf232dabd7de18d2fe20834/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ab/abf6d805a0dfa792fdf232dabd7de18d2fe20834//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ab/abf6d805a0dfa792fdf232dabd7de18d2fe20834//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-22 11:00 [binutils-gdb] [gdb/testsuite] Fix gdb.base/shlib-call.exp with gcc-8 gdb-buildbot
@ 2020-05-22 11:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-22 11:00 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/3054

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        0fc2a808cbf5302016535367191bb8cd0900f332

Subject of commit:
        [gdb/testsuite] Fix gdb.base/shlib-call.exp with gcc-8

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0f/0fc2a808cbf5302016535367191bb8cd0900f332/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/0f/0fc2a808cbf5302016535367191bb8cd0900f332//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0f/0fc2a808cbf5302016535367191bb8cd0900f332//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-22  7:02 [binutils-gdb] [gdb/testsuite] Fix gdb_unbuffer_output return-type gdb-buildbot
@ 2020-05-22  7:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-22  7:02 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3053

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        873dd4273f9742e8e2f36868cd49dc83b6f199f5

Subject of commit:
        [gdb/testsuite] Fix gdb_unbuffer_output return-type

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/87/873dd4273f9742e8e2f36868cd49dc83b6f199f5/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/87/873dd4273f9742e8e2f36868cd49dc83b6f199f5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/87/873dd4273f9742e8e2f36868cd49dc83b6f199f5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-22  3:00 [binutils-gdb] [gdb/testsuite] Fix gdb.base/consecutive.exp with gcc-8 gdb-buildbot
@ 2020-05-22  3:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-22  3:00 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/3052

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        7c99e7e2b08cf439198a79435fbee48af8dd1043

Subject of commit:
        [gdb/testsuite] Fix gdb.base/consecutive.exp with gcc-8

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7c99e7e2b08cf439198a79435fbee48af8dd1043/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/7c/7c99e7e2b08cf439198a79435fbee48af8dd1043//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7c99e7e2b08cf439198a79435fbee48af8dd1043//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-21 23:01 [binutils-gdb] [gdb/testsuite] Compile compile-ifunc.c with -Wno-attribute-alias gdb-buildbot
@ 2020-05-21 23:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-21 23:01 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3051

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        6173d6a696349bd934166b4694c24f4eda7362c0

Subject of commit:
        [gdb/testsuite] Compile compile-ifunc.c with -Wno-attribute-alias

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/61/6173d6a696349bd934166b4694c24f4eda7362c0/

*** 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/Fedora-i686/61/6173d6a696349bd934166b4694c24f4eda7362c0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/61/6173d6a696349bd934166b4694c24f4eda7362c0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-21 19:03 [binutils-gdb] gdb: remove main_type::flag_incomplete gdb-buildbot
@ 2020-05-21 19:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-21 19:03 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3050

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        a3bbacc120892759fa364d61471195275541c2be

Subject of commit:
        gdb: remove main_type::flag_incomplete

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a3/a3bbacc120892759fa364d61471195275541c2be/

*** 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 -> 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-i686/a3/a3bbacc120892759fa364d61471195275541c2be//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a3/a3bbacc120892759fa364d61471195275541c2be//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-21 11:06 [binutils-gdb] [PATCH] bfd: tweak SET_ARCH_MACH of aout-cris.c gdb-buildbot
@ 2020-05-21 11:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-21 11:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3048

Author:
        Gunther Nikl <gnikl@justmail.de>

Commit tested:
        7242fa8aa7596b4e154ca96ddf5ce49353bf2e5d

Subject of commit:
        [PATCH] bfd: tweak SET_ARCH_MACH of aout-cris.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/72/7242fa8aa7596b4e154ca96ddf5ce49353bf2e5d/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/72/7242fa8aa7596b4e154ca96ddf5ce49353bf2e5d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/72/7242fa8aa7596b4e154ca96ddf5ce49353bf2e5d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-21  3:05 [binutils-gdb] [gdb/testsuite] Fix gdb.base/async.exp with gcc-8 gdb-buildbot
@ 2020-05-21  3:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-21  3:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3046

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        6015a0674901be2c3fd24867e1a610d2abf8c1a0

Subject of commit:
        [gdb/testsuite] Fix gdb.base/async.exp with gcc-8

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/60/6015a0674901be2c3fd24867e1a610d2abf8c1a0/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/60/6015a0674901be2c3fd24867e1a610d2abf8c1a0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/60/6015a0674901be2c3fd24867e1a610d2abf8c1a0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-20 22:49 [binutils-gdb] Update more calls to add_prefix_cmd gdb-buildbot
@ 2020-05-20 22:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-20 22:49 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/3045

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3b6acaee895303e1800f5a9e3c20127c185a1209

Subject of commit:
        Update more calls to add_prefix_cmd

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3b/3b6acaee895303e1800f5a9e3c20127c185a1209/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.mi/list-thread-groups-no-inferior.exp: -list-thread-groups --available
PASS -> FAIL: gdb.mi/list-thread-groups-no-inferior.exp: GDB is still alive
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-i686/3b/3b6acaee895303e1800f5a9e3c20127c185a1209//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3b/3b6acaee895303e1800f5a9e3c20127c185a1209//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-20  5:24 [binutils-gdb] [gdb/testsuite] Fix i386-mpx.exp compilation warnings gdb-buildbot
@ 2020-05-20  5:25 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-20  5:25 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/3042

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        5beb4d17717570c28e9bf290c64428fda65095b9

Subject of commit:
        [gdb/testsuite] Fix i386-mpx.exp compilation warnings

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5b/5beb4d17717570c28e9bf290c64428fda65095b9/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/completion.exp: completion of focus command: quit command input
PASS -> FAIL: gdb.tui/completion.exp: completion of focus command: tab completion
PASS -> FAIL: gdb.tui/completion.exp: completion of layout names: quit command input
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5b/5beb4d17717570c28e9bf290c64428fda65095b9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5b/5beb4d17717570c28e9bf290c64428fda65095b9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-20  1:24 [binutils-gdb] [gdb/testsuite] Update psym-external-decl.exp for gcc-10/clang gdb-buildbot
@ 2020-05-20  1:24 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-20  1:24 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/3041

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        8caf140db24116e8874099291a7a48644c368ab6

Subject of commit:
        [gdb/testsuite] Update psym-external-decl.exp for gcc-10/clang

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8caf140db24116e8874099291a7a48644c368ab6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8caf140db24116e8874099291a7a48644c368ab6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8caf140db24116e8874099291a7a48644c368ab6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 21:26 [binutils-gdb] [gdb/testsuite] Fix gdb.ada/operator_bp.exp breakpoint location FAILs gdb-buildbot
@ 2020-05-19 21:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-19 21:26 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3040

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        693196cba23b888d7014a3533b132b756e8d4e79

Subject of commit:
        [gdb/testsuite] Fix gdb.ada/operator_bp.exp breakpoint location FAILs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/69/693196cba23b888d7014a3533b132b756e8d4e79/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/69/693196cba23b888d7014a3533b132b756e8d4e79//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/69/693196cba23b888d7014a3533b132b756e8d4e79//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 17:26 [binutils-gdb] Remove gdb-gdb.gdb breakpoint on disappeared function info_command gdb-buildbot
@ 2020-05-19 17:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-19 17:26 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/3039

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        652fc23a30a1c04ff2ec67fa3c08f39bd28ad0d2

Subject of commit:
        Remove gdb-gdb.gdb breakpoint on disappeared function info_command.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/65/652fc23a30a1c04ff2ec67fa3c08f39bd28ad0d2/

*** Diff to previous build ***
==============================================
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::"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/65/652fc23a30a1c04ff2ec67fa3c08f39bd28ad0d2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/65/652fc23a30a1c04ff2ec67fa3c08f39bd28ad0d2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19 13:25 [binutils-gdb] Fix size recalculation of fortran arrays gdb-buildbot
@ 2020-05-19 13:25 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-19 13:25 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/3038

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        8dbb13755bd15eea33df1dec1c6171f745d9f501

Subject of commit:
        Fix size recalculation of fortran arrays

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8d/8dbb13755bd15eea33df1dec1c6171f745d9f501/

*** Diff to previous build ***
==============================================
KFAIL -> KPASS: gdb.fortran/derived-type-striding.exp: p point_dimension
KFAIL -> KPASS: gdb.fortran/derived-type-striding.exp: p point_mixed_dimension
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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8d/8dbb13755bd15eea33df1dec1c6171f745d9f501//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8d/8dbb13755bd15eea33df1dec1c6171f745d9f501//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19  9:25 [binutils-gdb] [gdb/testsuite] Fix Wunused-result warning in until-reverse.c gdb-buildbot
@ 2020-05-19  9:25 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-19  9:25 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/3037

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        53ae0aa9c65bc41b6f67f52a657b9f5339a331be

Subject of commit:
        [gdb/testsuite] Fix Wunused-result warning in until-reverse.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/53/53ae0aa9c65bc41b6f67f52a657b9f5339a331be/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/53/53ae0aa9c65bc41b6f67f52a657b9f5339a331be//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/53/53ae0aa9c65bc41b6f67f52a657b9f5339a331be//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19  5:24 [binutils-gdb] PR25900, RISC-V: null pointer dereference gdb-buildbot
@ 2020-05-19  5:24 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-19  5:24 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/3036

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a2714d6cca1f1c7695f8dc84b49a4a51d1db86c8

Subject of commit:
        PR25900, RISC-V: null pointer dereference

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a2/a2714d6cca1f1c7695f8dc84b49a4a51d1db86c8/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: cmd complete "b "
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: tab complete "b "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-i686/a2/a2714d6cca1f1c7695f8dc84b49a4a51d1db86c8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a2/a2714d6cca1f1c7695f8dc84b49a4a51d1db86c8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-19  1:28 [binutils-gdb] PR25882, .gnu.attributes are not checked for shared libraries gdb-buildbot
@ 2020-05-19  1:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-19  1:28 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3035

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a8acd6eeb6dc2cc5460ece90f90ebe36b56b20ba

Subject of commit:
        PR25882, .gnu.attributes are not checked for shared libraries

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a8/a8acd6eeb6dc2cc5460ece90f90ebe36b56b20ba/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
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 1: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a8/a8acd6eeb6dc2cc5460ece90f90ebe36b56b20ba//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a8/a8acd6eeb6dc2cc5460ece90f90ebe36b56b20ba//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-18 21:27 [binutils-gdb] FIXME for merging of e_flags and .gnu.attributes gdb-buildbot
@ 2020-05-18 21:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-18 21:27 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/3034

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        6b728d3286a6e073e8cbdb63600e421de4f32dad

Subject of commit:
        FIXME for merging of e_flags and .gnu.attributes

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6b728d3286a6e073e8cbdb63600e421de4f32dad/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6b728d3286a6e073e8cbdb63600e421de4f32dad//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6b728d3286a6e073e8cbdb63600e421de4f32dad//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-18 17:29 [binutils-gdb] ppc32 merging of e_flags from dynamic objects gdb-buildbot
@ 2020-05-18 17:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-18 17:29 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3033

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        91ed9b71fa737ff4a4519f84c5e0ae0d544514f1

Subject of commit:
        ppc32 merging of e_flags from dynamic objects

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/91/91ed9b71fa737ff4a4519f84c5e0ae0d544514f1/

*** 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/Fedora-i686/91/91ed9b71fa737ff4a4519f84c5e0ae0d544514f1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/91/91ed9b71fa737ff4a4519f84c5e0ae0d544514f1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-18 13:28 [binutils-gdb] Add support for NetBSD thread events (create, exit) gdb-buildbot
@ 2020-05-18 13:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-18 13:28 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3032

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        117539e6d505f75386de6ba1bbe0b82e7c8ef111

Subject of commit:
        Add support for NetBSD thread events (create, exit)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/11/117539e6d505f75386de6ba1bbe0b82e7c8ef111/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/11/117539e6d505f75386de6ba1bbe0b82e7c8ef111//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/11/117539e6d505f75386de6ba1bbe0b82e7c8ef111//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-18  9:30 [binutils-gdb] Revert "2020-04-29 Sterling Augustine <saugustine@google.com>" gdb-buildbot
@ 2020-05-18  9:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-18  9:30 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/3031

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        b2a0dd767a59a4b1e343c178177dcaee55e540f1

Subject of commit:
        Revert "2020-04-29  Sterling Augustine <saugustine@google.com>"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b2/b2a0dd767a59a4b1e343c178177dcaee55e540f1/

*** 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/Fedora-i686/b2/b2a0dd767a59a4b1e343c178177dcaee55e540f1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b2/b2a0dd767a59a4b1e343c178177dcaee55e540f1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-18  5:31 [binutils-gdb] Remove duplicated creation of "frame" command and "f" alias gdb-buildbot
@ 2020-05-18  5:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-18  5:31 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/3030

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        102e38eba728cd3b969723f7cebd13f7220364b8

Subject of commit:
        Remove duplicated creation of "frame" command and "f" alias.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/10/102e38eba728cd3b969723f7cebd13f7220364b8/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/10/102e38eba728cd3b969723f7cebd13f7220364b8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/10/102e38eba728cd3b969723f7cebd13f7220364b8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-18  1:32 [binutils-gdb] Implement debugging of WOW64 processes in gdbserver gdb-buildbot
@ 2020-05-18  1:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-18  1: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/3029

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        7d186bc04245c5757f396c2d4f8f89f24818628e

Subject of commit:
        Implement debugging of WOW64 processes in gdbserver

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7d/7d186bc04245c5757f396c2d4f8f89f24818628e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
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/Fedora-i686/7d/7d186bc04245c5757f396c2d4f8f89f24818628e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7d/7d186bc04245c5757f396c2d4f8f89f24818628e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-17 21:33 [binutils-gdb] Calculate size of array of stubbed type gdb-buildbot
@ 2020-05-17 21:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-17 21:33 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/3028

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        ee9d1e5f76033cd8432713a76381ade76697df04

Subject of commit:
        Calculate size of array of stubbed type

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ee/ee9d1e5f76033cd8432713a76381ade76697df04/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/array-slices.exp: test 2: p array
PASS -> FAIL: gdb.fortran/array-slices.exp: test 3: p array
PASS -> FAIL: gdb.fortran/array-slices.exp: test 4: p array
PASS -> FAIL: gdb.fortran/array-slices.exp: test 5: p array
PASS -> FAIL: gdb.fortran/array-slices.exp: test 7: p array
PASS -> FAIL: gdb.fortran/array-slices.exp: test 8: p array
KPASS -> KFAIL: gdb.fortran/derived-type-striding.exp: p point_dimension
KPASS -> KFAIL: gdb.fortran/derived-type-striding.exp: p point_mixed_dimension
PASS -> FAIL: gdb.fortran/vla-alloc-assoc.exp: print deallocated vla1
PASS -> FAIL: gdb.fortran/vla-alloc-assoc.exp: print deallocated vla2
PASS -> FAIL: gdb.fortran/vla-ptype.exp: ptype pvla
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.fortran/vla-type.exp: print twov before allocated
PASS -> FAIL: gdb.fortran/vla-type.exp: print twov%ivla1 before allocated
PASS -> FAIL: gdb.fortran/vla-value.exp: print vla1 after deassociated
PASS -> FAIL: gdb.mi/mi-vla-fortran.exp: evaluate not allocated vla, after deallocation
PASS -> FAIL: gdb.mi/mi-vla-fortran.exp: evaluate not associated vla
PASS -> FAIL: gdb.mi/mi-vla-fortran.exp: evaluate vla pointer set to null
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ee/ee9d1e5f76033cd8432713a76381ade76697df04//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ee/ee9d1e5f76033cd8432713a76381ade76697df04//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-17 17:35 [binutils-gdb] Adjust array pretty printer tests to the new format gdb-buildbot
@ 2020-05-17 17:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-17 17:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3027

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        d5cf82c0d7a7b13727a2f26425afc9051656a716

Subject of commit:
        Adjust array pretty printer tests to the new format

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d5/d5cf82c0d7a7b13727a2f26425afc9051656a716/

*** Diff to previous build ***
==============================================
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: tab complete "b test_op_delete::operator d"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d5/d5cf82c0d7a7b13727a2f26425afc9051656a716//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d5/d5cf82c0d7a7b13727a2f26425afc9051656a716//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-17 13:35 [binutils-gdb] AArch64: add GAS support for UDF instruction gdb-buildbot
@ 2020-05-17 13:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-17 13:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3026

Author:
        Alex Coplan <alex.coplan@arm.com>

Commit tested:
        09c1e68a162f9a2c2cadee916387a147a8af44b7

Subject of commit:
        AArch64: add GAS support for UDF instruction

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/09/09c1e68a162f9a2c2cadee916387a147a8af44b7/

*** 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/Fedora-i686/09/09c1e68a162f9a2c2cadee916387a147a8af44b7//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/09/09c1e68a162f9a2c2cadee916387a147a8af44b7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-17  9:37 [binutils-gdb] Use thiscall calling convention for class members gdb-buildbot
@ 2020-05-17  9:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-17  9:37 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/3025

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        627c7fb8ea16388f349b6b26e20bf017d71e51fe

Subject of commit:
        Use thiscall calling convention for class members

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/62/627c7fb8ea16388f349b6b26e20bf017d71e51fe/

*** 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 -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/62/627c7fb8ea16388f349b6b26e20bf017d71e51fe//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/62/627c7fb8ea16388f349b6b26e20bf017d71e51fe//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-17  5:37 [binutils-gdb] xtensa: fix XTENSA_NDIFF handling for PR ld/25861 gdb-buildbot
@ 2020-05-17  5:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-17  5:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3024

Author:
        Max Filippov <jcmvbkbc@gmail.com>

Commit tested:
        d548f47df4d2e3d117d504a4c9977982c78a0556

Subject of commit:
        xtensa: fix XTENSA_NDIFF handling for PR ld/25861

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d5/d548f47df4d2e3d117d504a4c9977982c78a0556/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d5/d548f47df4d2e3d117d504a4c9977982c78a0556//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d5/d548f47df4d2e3d117d504a4c9977982c78a0556//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-16 21:38 [binutils-gdb] gdb: fix shellcheck warnings SC2154 (referenced but not assigned) in gdbarch.sh gdb-buildbot
@ 2020-05-16 21:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-16 21:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3022

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        1207375d768ae2b901c3bea6543b610c461160dd

Subject of commit:
        gdb: fix shellcheck warnings SC2154 (referenced but not assigned) in gdbarch.sh

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/12/1207375d768ae2b901c3bea6543b610c461160dd/

*** Diff to previous build ***
==============================================
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: tab complete "b test_op_delete::operator "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-i686/12/1207375d768ae2b901c3bea6543b610c461160dd//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/12/1207375d768ae2b901c3bea6543b610c461160dd//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-16  9:04 [binutils-gdb] gdb: fix shellcheck warnings SC2006 (use $() instead of ``) in gdbarch.sh gdb-buildbot
@ 2020-05-16  9:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-16  9:04 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/3019

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        cb02ab2416c2d83ca053652a21788189f3f7779f

Subject of commit:
        gdb: fix shellcheck warnings SC2006 (use $() instead of ``) in gdbarch.sh

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/cb/cb02ab2416c2d83ca053652a21788189f3f7779f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-i686/cb/cb02ab2416c2d83ca053652a21788189f3f7779f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/cb/cb02ab2416c2d83ca053652a21788189f3f7779f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-15 18:35 [binutils-gdb] 2020-04-29 Sterling Augustine <saugustine@google.com> gdb-buildbot
@ 2020-05-15 18:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-15 18:35 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/3015

Author:
        Sterling Augustine <saugustine@google.com>

Commit tested:
        84ed7a472551bce1ac58e0eced619433fabc956c

Subject of commit:
        2020-04-29  Sterling Augustine <saugustine@google.com>

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/84/84ed7a472551bce1ac58e0eced619433fabc956c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/84/84ed7a472551bce1ac58e0eced619433fabc956c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/84/84ed7a472551bce1ac58e0eced619433fabc956c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-15 14:37 [binutils-gdb] Sync config and libiberty with GCC gdb-buildbot
@ 2020-05-15 14:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-15 14:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3014

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        87c66b2e70e421983a826518ff5e03d17eaa8f4c

Subject of commit:
        Sync config and libiberty with GCC

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/87/87c66b2e70e421983a826518ff5e03d17eaa8f4c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/87/87c66b2e70e421983a826518ff5e03d17eaa8f4c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/87/87c66b2e70e421983a826518ff5e03d17eaa8f4c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-15 10:01 [binutils-gdb] gdb: fix duplicate test names in gdb.base/break.exp gdb-buildbot
@ 2020-05-15 10:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-15 10:01 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3013

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        42e165c30c2f0602a73d301bd62a49a2290360c4

Subject of commit:
        gdb: fix duplicate test names in gdb.base/break.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/42/42e165c30c2f0602a73d301bd62a49a2290360c4/

*** 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/Fedora-i686/42/42e165c30c2f0602a73d301bd62a49a2290360c4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/42/42e165c30c2f0602a73d301bd62a49a2290360c4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-15  4:24 [binutils-gdb] Fix Ada crash with .debug_types gdb-buildbot
@ 2020-05-15  4:24 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-15  4:24 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3012

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        ed6aceddf5b2c31cda8f74982e8dd0574b3979b8

Subject of commit:
        Fix Ada crash with .debug_types

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ed/ed6aceddf5b2c31cda8f74982e8dd0574b3979b8/

*** 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/Fedora-i686/ed/ed6aceddf5b2c31cda8f74982e8dd0574b3979b8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ed/ed6aceddf5b2c31cda8f74982e8dd0574b3979b8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-14 17:03 [binutils-gdb] Add basic event handling in the NetBSD target gdb-buildbot
@ 2020-05-14 17:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-14 17:03 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3010

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        f94b2e038757eeefd7351e8122160715d6e3ce3c

Subject of commit:
        Add basic event handling in the NetBSD target

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f9/f94b2e038757eeefd7351e8122160715d6e3ce3c/

*** 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/Fedora-i686/f9/f94b2e038757eeefd7351e8122160715d6e3ce3c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f9/f94b2e038757eeefd7351e8122160715d6e3ce3c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-14 11:17 [binutils-gdb] Also use unsigned 8-bit immediate values for the LDRC and SETRC insns gdb-buildbot
@ 2020-05-14 11:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-14 11:17 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3009

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        9654d51a96ebe9ea1b2191afd47e1f3306317d2b

Subject of commit:
        Also use unsigned 8-bit immediate values for the LDRC and SETRC insns.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/96/9654d51a96ebe9ea1b2191afd47e1f3306317d2b/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/96/9654d51a96ebe9ea1b2191afd47e1f3306317d2b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/96/9654d51a96ebe9ea1b2191afd47e1f3306317d2b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-14  5:39 [binutils-gdb] Remove some dead code gdb-buildbot
@ 2020-05-14  5:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-14  5:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3008

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        fc49bc72378b4402ca60baa5ff65f1392c92c279

Subject of commit:
        Remove some dead code

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/fc/fc49bc72378b4402ca60baa5ff65f1392c92c279/

*** 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 -> 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/Fedora-i686/fc/fc49bc72378b4402ca60baa5ff65f1392c92c279//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fc/fc49bc72378b4402ca60baa5ff65f1392c92c279//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-13 18:28 [binutils-gdb] Updated Serbian translation for the binutils sub-directory, and Swedish translation for the opcodes sub-directory gdb-buildbot
@ 2020-05-13 18:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-13 18:28 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3006

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        c2e71e57a0bfd74e9e7b883e457e4bb29bc17396

Subject of commit:
        Updated Serbian translation for the binutils sub-directory, and Swedish translation for the opcodes sub-directory.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c2/c2e71e57a0bfd74e9e7b883e457e4bb29bc17396/

*** 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/Fedora-i686/c2/c2e71e57a0bfd74e9e7b883e457e4bb29bc17396//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c2/c2e71e57a0bfd74e9e7b883e457e4bb29bc17396//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-13 12:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-13 12:51 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3005

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/Fedora-i686/5c/5c936ef50f02fe21a6e1306e30849b4487c65b2c/

*** 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/Fedora-i686/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/Fedora-i686/5c/5c936ef50f02fe21a6e1306e30849b4487c65b2c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-13  7:16 [binutils-gdb] [gdb/testsuite] Add xfails for PR gcc/90232 gdb-buildbot
@ 2020-05-13  7:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-13  7:16 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3004

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        6e4e3fe1b6d68bde1f4e022bd0675fe36420e976

Subject of commit:
        [gdb/testsuite] Add xfails for PR gcc/90232

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6e/6e4e3fe1b6d68bde1f4e022bd0675fe36420e976/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6e/6e4e3fe1b6d68bde1f4e022bd0675fe36420e976//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6e/6e4e3fe1b6d68bde1f4e022bd0675fe36420e976//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-11 23:30 [binutils-gdb] Fix array pretty formatter gdb-buildbot
@ 2020-05-11 23:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-11 23:30 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/3003

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/Fedora-i686/d6/d642b6920b1a697da2e8fa2326cb773612a87f3f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/d6/d642b6920b1a697da2e8fa2326cb773612a87f3f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-11 21:37 [binutils-gdb] [gdb] Fix range loop index in find_method gdb-buildbot
@ 2020-05-11 21:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-11 21:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3002

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        ea90f2278cee318976c66bf82284046214fb30af

Subject of commit:
        [gdb] Fix range loop index in find_method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ea/ea90f2278cee318976c66bf82284046214fb30af/

*** 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=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-i686/ea/ea90f2278cee318976c66bf82284046214fb30af//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ea/ea90f2278cee318976c66bf82284046214fb30af//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-11 19:35 [binutils-gdb] Add definitions of system calls to catch in native NetBSD targets gdb-buildbot
@ 2020-05-11 19:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-11 19:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3001

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/Fedora-i686/44/4498ef4f8b61f396472a12aea3aa84985714b7b3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
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-i686/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/Fedora-i686/44/4498ef4f8b61f396472a12aea3aa84985714b7b3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-11 17:32 [binutils-gdb] gdb: fix shellcheck warning in update-freebsd.sh gdb-buildbot
@ 2020-05-11 17:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-11 17:33 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/3000

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        a55e30b51bc6227d8d41f707654d0a5620978dcf

Subject of commit:
        gdb: fix shellcheck warning in update-freebsd.sh

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a5/a55e30b51bc6227d8d41f707654d0a5620978dcf/

*** 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/Fedora-i686/a5/a55e30b51bc6227d8d41f707654d0a5620978dcf//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a5/a55e30b51bc6227d8d41f707654d0a5620978dcf//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-11 15:36 [binutils-gdb] Allow Python commands to be in class_tui gdb-buildbot
@ 2020-05-11 15:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-11 15:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2999

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2b2fbab8eff221506975a7c8d00ea92d47de915e

Subject of commit:
        Allow Python commands to be in class_tui

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2b/2b2fbab8eff221506975a7c8d00ea92d47de915e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2b/2b2fbab8eff221506975a7c8d00ea92d47de915e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2b/2b2fbab8eff221506975a7c8d00ea92d47de915e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-11 13:36 [binutils-gdb] gdb: Fix toplevel types with -fdebug-types-section gdb-buildbot
@ 2020-05-11 13:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-11 13:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2998

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/Fedora-i686/77/770479f223ecd1920dd3cc683b05b24af25c4613/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/77/770479f223ecd1920dd3cc683b05b24af25c4613//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-11 11:40 [binutils-gdb] gdb: use gdb:hash_enum as hash function in offset_map_type gdb-buildbot
@ 2020-05-11 11:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-11 11:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2997

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        1b95cdb76caca1b7a9ecf9324acf23139f11f7d1

Subject of commit:
        gdb: use gdb:hash_enum as hash function in offset_map_type

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/1b/1b95cdb76caca1b7a9ecf9324acf23139f11f7d1/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: 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-i686/1b/1b95cdb76caca1b7a9ecf9324acf23139f11f7d1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1b/1b95cdb76caca1b7a9ecf9324acf23139f11f7d1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-11  9:45 [binutils-gdb] Rebase libiberty source with latest changes from gcc gdb-buildbot
@ 2020-05-11  9:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-11  9:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2996

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        56b1e56d2c2fa7611dc87192f26aac1da9fc63df

Subject of commit:
        Rebase libiberty source with latest changes from gcc.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/56/56b1e56d2c2fa7611dc87192f26aac1da9fc63df/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/56/56b1e56d2c2fa7611dc87192f26aac1da9fc63df//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/56/56b1e56d2c2fa7611dc87192f26aac1da9fc63df//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-11  5:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-11  5:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2994

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/Fedora-i686/56/56a4f5a10b1e90d60527455b8542ba98fd0f6349/

*** 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/Fedora-i686/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/Fedora-i686/56/56a4f5a10b1e90d60527455b8542ba98fd0f6349//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-11  3:57 [binutils-gdb] [gdb/testsuite] Remove KFAIL from gdb.base/info-macros.exp gdb-buildbot
@ 2020-05-11  3:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-11  3:57 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2993

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        0b2f8a3bbb595a99dd7977caa6382aab25630115

Subject of commit:
        [gdb/testsuite] Remove KFAIL from gdb.base/info-macros.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0b2f8a3bbb595a99dd7977caa6382aab25630115/

*** Diff to previous build ***
==============================================
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=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/Fedora-i686/0b/0b2f8a3bbb595a99dd7977caa6382aab25630115//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0b2f8a3bbb595a99dd7977caa6382aab25630115//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-11  2:01 [binutils-gdb] [gdb/testsuite] Add PR number in KFAIL in gdb.ada/array_ptr_renaming.exp gdb-buildbot
@ 2020-05-11  2:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-11  2:01 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2992

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        5390c717386160683b436e35befd9dc7893065e5

Subject of commit:
        [gdb/testsuite] Add PR number in KFAIL in gdb.ada/array_ptr_renaming.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/53/5390c717386160683b436e35befd9dc7893065e5/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/53/5390c717386160683b436e35befd9dc7893065e5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/53/5390c717386160683b436e35befd9dc7893065e5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-10 21:14 [binutils-gdb] alpha-vms: divide by zero gdb-buildbot
@ 2020-05-10 22:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-10 22:27 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/2990

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        48e5bada0aa8dacfbdee9700638fb20f5c17e55f

Subject of commit:
        alpha-vms: divide by zero

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/48/48e5bada0aa8dacfbdee9700638fb20f5c17e55f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/48/48e5bada0aa8dacfbdee9700638fb20f5c17e55f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/48/48e5bada0aa8dacfbdee9700638fb20f5c17e55f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-10 18:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-10 18:12 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2988

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/Fedora-i686/1e/1eb399142793d31d1b7a358baad5fded996e02eb/

*** 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/Fedora-i686/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/Fedora-i686/1e/1eb399142793d31d1b7a358baad5fded996e02eb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-10 16:17 [binutils-gdb] gdbsupport: include cstdlib in common-defs.h gdb-buildbot
@ 2020-05-10 16:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-10 16:17 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2987

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        ff8885c3be6f42ed90a7b0ec0028fad26861cd94

Subject of commit:
        gdbsupport: include cstdlib in common-defs.h

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ff/ff8885c3be6f42ed90a7b0ec0028fad26861cd94/

*** Diff to previous build ***
==============================================
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: tab complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
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/Fedora-i686/ff/ff8885c3be6f42ed90a7b0ec0028fad26861cd94//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ff/ff8885c3be6f42ed90a7b0ec0028fad26861cd94//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-10 14:20 [binutils-gdb] Fix remaining inline/tailcall unwinding breakage for x86_64 gdb-buildbot
@ 2020-05-10 14:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-10 14:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2986

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/Fedora-i686/99/991a3e2e9944a4b3a27bd989ac03c18285bd545d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/99/991a3e2e9944a4b3a27bd989ac03c18285bd545d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-10  9:54 [binutils-gdb] Fix comments and whitespace in lookup_cmd_composition gdb-buildbot
@ 2020-05-10  9:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-10  9:54 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2984

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        bc3609fd3891c1cc0007eccd74bca98aabc03996

Subject of commit:
        Fix comments and whitespace in lookup_cmd_composition

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/bc/bc3609fd3891c1cc0007eccd74bca98aabc03996/

*** Diff to previous build ***
==============================================
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::"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bc/bc3609fd3891c1cc0007eccd74bca98aabc03996//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bc/bc3609fd3891c1cc0007eccd74bca98aabc03996//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-09 20:25 [binutils-gdb] [gdb/testsuite] Add target board debug-types gdb-buildbot
@ 2020-05-09 20:25 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-09 20:25 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2980

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        d472f0fbaac80ed6363f26c3f417b9eee7d5e7fc

Subject of commit:
        [gdb/testsuite] Add target board debug-types

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d4/d472f0fbaac80ed6363f26c3f417b9eee7d5e7fc/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: cmd complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d4/d472f0fbaac80ed6363f26c3f417b9eee7d5e7fc//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d4/d472f0fbaac80ed6363f26c3f417b9eee7d5e7fc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-09 16:53 [binutils-gdb] gdb/testsuite: Remove build paths from test names gdb-buildbot
@ 2020-05-09 18:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-09 18:43 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2979

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/Fedora-i686/8d/8d840e05dc21b67290440bfd449b9bf272346d47/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/8d/8d840e05dc21b67290440bfd449b9bf272346d47//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-09 16:24 [binutils-gdb] Remove symbol_get_demangled_name gdb-buildbot
@ 2020-05-09 16:24 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-09 16:24 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/2977

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        7151c1af38e250fa4d024fa53f1cd5b3fc199314

Subject of commit:
        Remove symbol_get_demangled_name

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/71/7151c1af38e250fa4d024fa53f1cd5b3fc199314/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/71/7151c1af38e250fa4d024fa53f1cd5b3fc199314//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/71/7151c1af38e250fa4d024fa53f1cd5b3fc199314//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-09 14:26 [binutils-gdb] Fix Rust test cases gdb-buildbot
@ 2020-05-09 14:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-09 14:27 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2976

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/Fedora-i686/90/906bb4c58faa8e2c1c62e295f8054e75e910e5e8/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/90/906bb4c58faa8e2c1c62e295f8054e75e910e5e8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-09 10:04 [binutils-gdb] Don't call compute_and_set_names for partial symbols gdb-buildbot
@ 2020-05-09 10:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-09 10:04 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/2974

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        f049a313fcad4d51a55b6e635612c98e1a72b8a8

Subject of commit:
        Don't call compute_and_set_names for partial symbols

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f0/f049a313fcad4d51a55b6e635612c98e1a72b8a8/

*** 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/Fedora-i686/f0/f049a313fcad4d51a55b6e635612c98e1a72b8a8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f0/f049a313fcad4d51a55b6e635612c98e1a72b8a8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-09  8:18 [binutils-gdb] Use the new add_psymbol_to_list overload gdb-buildbot
@ 2020-05-09  8:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-09  8:18 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/2973

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/Fedora-i686/76/76e288d1d2f1a6b1a19fb9856dc3256a3a5443fa/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/76/76e288d1d2f1a6b1a19fb9856dc3256a3a5443fa//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-09  6:26 [binutils-gdb] Introduce new add_psymbol_to_list overload gdb-buildbot
@ 2020-05-09  6:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-09  6:26 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2972

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2467f4f6a533a28047e0b45ce716b9b1f9f72a09

Subject of commit:
        Introduce new add_psymbol_to_list overload

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/24/2467f4f6a533a28047e0b45ce716b9b1f9f72a09/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/24/2467f4f6a533a28047e0b45ce716b9b1f9f72a09//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/24/2467f4f6a533a28047e0b45ce716b9b1f9f72a09//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-09  0:25 [binutils-gdb] Move the rust "{" hack gdb-buildbot
@ 2020-05-09  0:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-09  0:31 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/2969

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/Fedora-i686/78/787de330ee1471389cad1975eae65e566ad00448/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/78/787de330ee1471389cad1975eae65e566ad00448//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-08 22:23 [binutils-gdb] Convert symbol_set_demangled_name to a method gdb-buildbot
@ 2020-05-08 22:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-08 22:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2968

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        ff985671077a60f82e3cd8bcceda3efa0f3fabe6

Subject of commit:
        Convert symbol_set_demangled_name to a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ff/ff985671077a60f82e3cd8bcceda3efa0f3fabe6/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ff/ff985671077a60f82e3cd8bcceda3efa0f3fabe6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ff/ff985671077a60f82e3cd8bcceda3efa0f3fabe6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-08 20:06 [binutils-gdb] [gdb/testsuite] Fix language in dw2-bad-mips-linkage-name.exp gdb-buildbot
@ 2020-05-08 20:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-08 20:06 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/2967

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        7cf288744fdd238bbab079a53584f76181d44218

Subject of commit:
        [gdb/testsuite] Fix language in dw2-bad-mips-linkage-name.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7cf288744fdd238bbab079a53584f76181d44218/

*** 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/Fedora-i686/7c/7cf288744fdd238bbab079a53584f76181d44218//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7c/7cf288744fdd238bbab079a53584f76181d44218//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-08 17:35 [binutils-gdb] Update test cases that work with minimal encodings gdb-buildbot
@ 2020-05-08 17:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-08 17:35 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/2965

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/Fedora-i686/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
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/da/dac2fef7cfaf007123b521a70864d4dde3d09410//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-08 15:48 [binutils-gdb] Add Python support for dynamic types gdb-buildbot
@ 2020-05-08 15:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-08 15:54 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2964

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        1acda8039ba681e88416a7da6a6e3abdcae6b86b

Subject of commit:
        Add Python support for dynamic types

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/1a/1acda8039ba681e88416a7da6a6e3abdcae6b86b/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-print: cmd complete "frame apply level 0 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: cmd complete "b -function test_op_EQ::operator ==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: tab complete "b -function test_op_EQ::operator ==
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.threads/manythreads.exp: stop threads 2
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1a/1acda8039ba681e88416a7da6a6e3abdcae6b86b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1a/1acda8039ba681e88416a7da6a6e3abdcae6b86b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-08 13:32 [binutils-gdb] Add tests for Ada changes gdb-buildbot
@ 2020-05-08 13:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-08 13: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/2963

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/Fedora-i686/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/Fedora-i686/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/Fedora-i686/ad/adfb981595c1ea12736b6d3c4686973040f171ff//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-08 11:53 [binutils-gdb] Update Ada ptype support for dynamic types gdb-buildbot
@ 2020-05-08 11:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-08 11:53 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/2962

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/Fedora-i686/d6/d656f129ebc7b96db96244d0206fc7fb9af85a65/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/d6/d656f129ebc7b96db96244d0206fc7fb9af85a65//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-08  7:45 [binutils-gdb] Add support for dynamic type lengths gdb-buildbot
@ 2020-05-08  7:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-08  7:45 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/2960

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/Fedora-i686/f8/f8e89861cfb6acbfa097814f5864afd5563a3011/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/f8/f8e89861cfb6acbfa097814f5864afd5563a3011//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-08  5:54 [binutils-gdb] Rewrite the existing variant part code gdb-buildbot
@ 2020-05-08  5:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-08  5:54 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/2959

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        9c6a1327ad9a92b8584f0501dd25bf8ba9e84ac6

Subject of commit:
        Rewrite the existing variant part code

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9c/9c6a1327ad9a92b8584f0501dd25bf8ba9e84ac6/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9c/9c6a1327ad9a92b8584f0501dd25bf8ba9e84ac6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9c/9c6a1327ad9a92b8584f0501dd25bf8ba9e84ac6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-08  4:08 [binutils-gdb] Prefer existing data when evaluating DWARF expression gdb-buildbot
@ 2020-05-08  4:08 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-08  4:08 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2958

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        b249d2c2c01775fb015b38b272389b8693e414f6

Subject of commit:
        Prefer existing data when evaluating DWARF expression

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b2/b249d2c2c01775fb015b38b272389b8693e414f6/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b2/b249d2c2c01775fb015b38b272389b8693e414f6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b2/b249d2c2c01775fb015b38b272389b8693e414f6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-08  1:49 [binutils-gdb] Allow DWARF expression to push the initial address gdb-buildbot
@ 2020-05-08  1:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-08  1:49 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/2957

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        61122aa9ed4096c3d85b01d52a0c0f67fb441533

Subject of commit:
        Allow DWARF expression to push the initial address

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/61/61122aa9ed4096c3d85b01d52a0c0f67fb441533/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-i686/61/61122aa9ed4096c3d85b01d52a0c0f67fb441533//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/61/61122aa9ed4096c3d85b01d52a0c0f67fb441533//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-07 19:36 [binutils-gdb] Add WOW64 exception numbers to $_siginfo.ExceptionCode enum gdb-buildbot
@ 2020-05-07 19:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-07 19:36 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/2954

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/Fedora-i686/98/9852ceef7f07b60a757870bafcf044e7d93e08ed/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/98/9852ceef7f07b60a757870bafcf044e7d93e08ed//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-07 17:39 [binutils-gdb] Move OpenBSD-only functions from inf-ptrace to obsd-nat gdb-buildbot
@ 2020-05-07 17:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-07 17:39 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/2953

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        7632c6ce2bc013dd0402a2d942f78034fe73fbf9

Subject of commit:
        Move OpenBSD-only functions from inf-ptrace to obsd-nat

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/76/7632c6ce2bc013dd0402a2d942f78034fe73fbf9/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/76/7632c6ce2bc013dd0402a2d942f78034fe73fbf9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/76/7632c6ce2bc013dd0402a2d942f78034fe73fbf9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-07 15:18 [binutils-gdb] [gdb/testsuite] Reset errcnt in clean_restart gdb-buildbot
@ 2020-05-07 15:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-07 15:18 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2952

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/Fedora-i686/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/Fedora-i686/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/Fedora-i686/86/86e887ae1183ded1c4bfba8617e4e19c8dfc8271//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-07 12:31 [binutils-gdb] Fix Windows debugging regression gdb-buildbot
@ 2020-05-07 12:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-07 12:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2951

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        7be2bb4f47b7b25d4f60b52f6ebaade0644827f2

Subject of commit:
        Fix Windows debugging regression

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7b/7be2bb4f47b7b25d4f60b52f6ebaade0644827f2/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7b/7be2bb4f47b7b25d4f60b52f6ebaade0644827f2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7b/7be2bb4f47b7b25d4f60b52f6ebaade0644827f2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-07  9:40 [binutils-gdb] [gdb/testsuite] Compile dwzbuildid-mismatch more quietly gdb-buildbot
@ 2020-05-07  9:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-07  9:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2950

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        884287754e8da49581b4873b936d8eba7b1f052e

Subject of commit:
        [gdb/testsuite] Compile dwzbuildid-mismatch more quietly

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/88/884287754e8da49581b4873b936d8eba7b1f052e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/88/884287754e8da49581b4873b936d8eba7b1f052e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/88/884287754e8da49581b4873b936d8eba7b1f052e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-07  2:42 [binutils-gdb] [gdb/contrib] Use temp dir for gdb-add-index in cc-with-tweaks.sh gdb-buildbot
@ 2020-05-07  2:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-07  2:42 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2947

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        f80cb3b46ae19c6a7c39916916374410f5cc37bc

Subject of commit:
        [gdb/contrib] Use temp dir for gdb-add-index in cc-with-tweaks.sh

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f8/f80cb3b46ae19c6a7c39916916374410f5cc37bc/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f8/f80cb3b46ae19c6a7c39916916374410f5cc37bc//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f8/f80cb3b46ae19c6a7c39916916374410f5cc37bc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-07  0:19 [binutils-gdb] Fix infinite loop in is_linked_with_cygwin_dll gdb-buildbot
@ 2020-05-07  0:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-07  0:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2946

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        29514b87281c438543e4fc6ddda245dc194d5677

Subject of commit:
        Fix infinite loop in is_linked_with_cygwin_dll

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/29/29514b87281c438543e4fc6ddda245dc194d5677/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/29/29514b87281c438543e4fc6ddda245dc194d5677//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/29514b87281c438543e4fc6ddda245dc194d5677//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-06 21:01 [binutils-gdb] Fix inline frame unwinding breakage gdb-buildbot
@ 2020-05-06 21:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-06 21:01 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2945

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/Fedora-i686/59/5939967b355ba6a940887d19847b7893a4506067/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/59/5939967b355ba6a940887d19847b7893a4506067//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-06 18:20 [binutils-gdb] [gdb/symtab] Prefer def over decl (inter-CU case, with context) gdb-buildbot
@ 2020-05-06 18:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-06 18:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2944

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/Fedora-i686/70/70bc38f51381698804566504e25d197e8e731d2d/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/70/70bc38f51381698804566504e25d197e8e731d2d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-06 15:25 [binutils-gdb] [gdb/symtab] Prefer def over decl (inter-CU case) gdb-buildbot
@ 2020-05-06 15:25 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-06 15:25 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2943

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        de82891ce5b6d2c8109f512cd0732325f4cd0557

Subject of commit:
        [gdb/symtab] Prefer def over decl (inter-CU case)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/de/de82891ce5b6d2c8109f512cd0732325f4cd0557/

*** Diff to previous build ***
==============================================
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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/Fedora-i686/de/de82891ce5b6d2c8109f512cd0732325f4cd0557//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/de/de82891ce5b6d2c8109f512cd0732325f4cd0557//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-06 12:26 [binutils-gdb] Fix Ada crash with .debug_names gdb-buildbot
@ 2020-05-06 12:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-06 12:26 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2942

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        ecc6c6066b5cdd4663413e0bd6ef8deea1a8c889

Subject of commit:
        Fix Ada crash with .debug_names

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ec/ecc6c6066b5cdd4663413e0bd6ef8deea1a8c889/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ec/ecc6c6066b5cdd4663413e0bd6ef8deea1a8c889//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ec/ecc6c6066b5cdd4663413e0bd6ef8deea1a8c889//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-06  9:55 [binutils-gdb] Remove iterate_over_inferiors gdb-buildbot
@ 2020-05-06  9:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-06  9:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2941

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        740480b88afd4f2b01d117525f534ddce28530f3

Subject of commit:
        Remove iterate_over_inferiors

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/74/740480b88afd4f2b01d117525f534ddce28530f3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/attach.exp: do_call_attach_tests: continue until exit
PASS -> FAIL: gdb.base/bg-execution-repeat.exp: c&: breakpoint hit 2
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: performing step
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/74/740480b88afd4f2b01d117525f534ddce28530f3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/74/740480b88afd4f2b01d117525f534ddce28530f3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-06  7:33 [binutils-gdb] arc: Add support for ARC HS extra registers in core files gdb-buildbot
@ 2020-05-06  7:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-06  7:33 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2940

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/Fedora-i686/27/2745674244d6aecddcf636475034bdb9c0a6b4a0/

*** Diff to previous build ***
==============================================
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 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 -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/27/2745674244d6aecddcf636475034bdb9c0a6b4a0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-06  4:23 [binutils-gdb] [gdb/testsuite] Skip gdb.base/readnever.exp with target board readnow gdb-buildbot
@ 2020-05-06  4:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-06  4:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2938

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/Fedora-i686/96/96038148d0e9f7dc89284310d065e27a3fa375f2/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/96/96038148d0e9f7dc89284310d065e27a3fa375f2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-05 22:49 [binutils-gdb] xtensa: fix PR ld/25861 gdb-buildbot
@ 2020-05-05 22:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-05 22:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2935

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/Fedora-i686/30/30ce8e47fad9b057b6d7af9e1d43061126d34d20/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/30/30ce8e47fad9b057b6d7af9e1d43061126d34d20//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-05 19:06 [binutils-gdb] [gdb/testsuite] Fix .debug_ranges in gdb.mi/dw2-ref-missing-frame-func.c gdb-buildbot
@ 2020-05-05 19:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-05 19:06 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/2933

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        54ac3df1adbf7b4b3470a8df08caa0aea4c89616

Subject of commit:
        [gdb/testsuite] Fix .debug_ranges in gdb.mi/dw2-ref-missing-frame-func.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/54/54ac3df1adbf7b4b3470a8df08caa0aea4c89616/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
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-i686/54/54ac3df1adbf7b4b3470a8df08caa0aea4c89616//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/54/54ac3df1adbf7b4b3470a8df08caa0aea4c89616//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-05 16:47 [binutils-gdb] [gdb/testsuite] Fix .debug_aranges in gdb.dlang/watch-loc.c gdb-buildbot
@ 2020-05-05 16:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-05 16:47 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/2932

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        714534e1b88608f92b6946d8e5a24ea51a40e363

Subject of commit:
        [gdb/testsuite] Fix .debug_aranges in gdb.dlang/watch-loc.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/71/714534e1b88608f92b6946d8e5a24ea51a40e363/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/71/714534e1b88608f92b6946d8e5a24ea51a40e363//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/71/714534e1b88608f92b6946d8e5a24ea51a40e363//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-05 14:55 [binutils-gdb] [gdb/symtab] Store external var decls in psymtab gdb-buildbot
@ 2020-05-05 15:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-05 15:02 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2931

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/Fedora-i686/31/317d2668d01c7ddc9545029bf56d2b8c4d2bbfeb/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/tls.exp: print a_thread_local
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/31/317d2668d01c7ddc9545029bf56d2b8c4d2bbfeb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-05  6:50 [binutils-gdb] gdb/infrun: switch the context before 'displaced_step_restore' gdb-buildbot
@ 2020-05-05  6:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-05  6:50 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/2927

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/Fedora-i686/d4/d43b7a2d5718f303a9e284f0d14219f05fbcfa17/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/d4/d43b7a2d5718f303a9e284f0d14219f05fbcfa17//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-05  5:03 [binutils-gdb] Disallow PC relative for CMPI on MC68000/10 gdb-buildbot
@ 2020-05-05  5:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-05  5:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2926

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/Fedora-i686/bb/bb2a1453479dfa2589f3b62853d4e1cf60825e98/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-print: cmd complete "frame apply level 0 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
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: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >"
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/bb/bb2a1453479dfa2589f3b62853d4e1cf60825e98//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-05  2:33 [binutils-gdb] BFD: Exclude sections with no content from compress check gdb-buildbot
@ 2020-05-05  2:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-05  2:33 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/2925

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/Fedora-i686/c3/c36876fe5b5bac1c404ab2ca82bfbfb2ed9a2717/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c3/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/Fedora-i686/c3/c36876fe5b5bac1c404ab2ca82bfbfb2ed9a2717//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-05  0:46 [binutils-gdb] gdb, btrace: make record-btrace per-inferior gdb-buildbot
@ 2020-05-05  0:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-05  0:46 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/2924

Author:
        Markus Metzger <markus.t.metzger@intel.com>

Commit tested:
        d89edf9b811ac3c5643b8a866c238a93f35a5e6c

Subject of commit:
        gdb, btrace: make record-btrace per-inferior

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d8/d89edf9b811ac3c5643b8a866c238a93f35a5e6c/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d8/d89edf9b811ac3c5643b8a866c238a93f35a5e6c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d8/d89edf9b811ac3c5643b8a866c238a93f35a5e6c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-04 22:50 [binutils-gdb] gdb, btrace: diagnose double and failed enable gdb-buildbot
@ 2020-05-04 22:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-04 22:50 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2923

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/Fedora-i686/58/5897fd4994effd21cbe951e6d2c417097adea162/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/58/5897fd4994effd21cbe951e6d2c417097adea162//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-04 17:56 [binutils-gdb] [gdb] Fix hang after ext sigkill gdb-buildbot
@ 2020-05-04 17:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-04 17:56 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/2921

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/Fedora-i686/47/4778a5f87d253399083565b4919816f541ebe414/

*** Diff to previous build ***
==============================================
new FAIL: gdb.threads/killed-outside.exp: prompt after first continue
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=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/47/4778a5f87d253399083565b4919816f541ebe414//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-04 16:01 [binutils-gdb] [gdb/testsuite] share jit-protocol.h by all jit tests gdb-buildbot
@ 2020-05-04 16:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-04 16:01 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/2920

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/Fedora-i686/94/946422b6a113063b9bbd72832ed13d4694134597/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/94/946422b6a113063b9bbd72832ed13d4694134597//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-04 14:05 [binutils-gdb] [gdb/testsuite] structured rename of jit test files gdb-buildbot
@ 2020-05-04 14:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-04 14:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2919

Author:
        Mihails Strasuns <mihails.strasuns@intel.com>

Commit tested:
        922a7c7c5d4040f9e4ab75a059b9ca33f45ab952

Subject of commit:
        [gdb/testsuite] structured rename of jit test files

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/92/922a7c7c5d4040f9e4ab75a059b9ca33f45ab952/

*** 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/Fedora-i686/92/922a7c7c5d4040f9e4ab75a059b9ca33f45ab952//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/92/922a7c7c5d4040f9e4ab75a059b9ca33f45ab952//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-04 12:09 [binutils-gdb] [gdb/testsuite] allow more registers in gdb.base/jit-reader.exp gdb-buildbot
@ 2020-05-04 12:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-04 12:10 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/2918

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/Fedora-i686/f4/f49c464f933172bae5685c2fb51b9e220902146c/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd 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:"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/f4/f49c464f933172bae5685c2fb51b9e220902146c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-04 10:04 [binutils-gdb] elf: Strip zero-sized dynamic sections gdb-buildbot
@ 2020-05-04 10:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-04 10:04 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/2917

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/Fedora-i686/6f/6f6fd151cbf226bbaa66e44977f57b7c6dc33d89/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print "
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/6f/6f6fd151cbf226bbaa66e44977f57b7c6dc33d89//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-04  8:09 [binutils-gdb] alpha: Warn DT_TEXTREL with -M gdb-buildbot
@ 2020-05-04  8:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-04  8:09 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/2916

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        1f7f2abbc31ee9e6d4faca58bef14d8ee8cb1bd2

Subject of commit:
        alpha: Warn DT_TEXTREL with -M

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/1f/1f7f2abbc31ee9e6d4faca58bef14d8ee8cb1bd2/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1f/1f7f2abbc31ee9e6d4faca58bef14d8ee8cb1bd2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1f/1f7f2abbc31ee9e6d4faca58bef14d8ee8cb1bd2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-04  0:12 [binutils-gdb] Mark move constructors as "noexcept" gdb-buildbot
@ 2020-05-04  0:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-04  0:12 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/2912

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        0fa7617d84da8b809b14e1e2ee67474526c62021

Subject of commit:
        Mark move constructors as "noexcept"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0f/0fa7617d84da8b809b14e1e2ee67474526c62021/

*** 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=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0f/0fa7617d84da8b809b14e1e2ee67474526c62021//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0f/0fa7617d84da8b809b14e1e2ee67474526c62021//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-03 20:34 [binutils-gdb] Disable nested function tests for clang gdb-buildbot
@ 2020-05-03 20:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-03 20:34 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/2910

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/Fedora-i686/b5/b5d1d6f7b70a0086a915c0d04c28a4db91161057/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/b5/b5d1d6f7b70a0086a915c0d04c28a4db91161057//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-03 18:02 [binutils-gdb] Add myself to gdb/MAINTAINERS gdb-buildbot
@ 2020-05-03 18:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-03 18:02 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/2908

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/Fedora-i686/ad/ad23bda0db2b2bee506147701424b2ebfef8f55a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/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/Fedora-i686/ad/ad23bda0db2b2bee506147701424b2ebfef8f55a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-03 16:28 [binutils-gdb] Fix compilation error with clang in gdb/testsuite/gdb.cp/exception.cc gdb-buildbot
@ 2020-05-03 16:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-03 16:28 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2907

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        25230285442ed10ec0f65d770d0a188ff8680b8f

Subject of commit:
        Fix compilation error with clang in gdb/testsuite/gdb.cp/exception.cc

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/25/25230285442ed10ec0f65d770d0a188ff8680b8f/

*** 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/Fedora-i686/25/25230285442ed10ec0f65d770d0a188ff8680b8f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/25/25230285442ed10ec0f65d770d0a188ff8680b8f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-03 14:29 [binutils-gdb] Fix compilation error with clang in gdb/testsuite/gdb.trace/tspeed.c gdb-buildbot
@ 2020-05-03 14:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-03 14:29 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/2906

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        fa93cc8f35dbed69c3c47aa803686d87f2143779

Subject of commit:
        Fix compilation error with clang in gdb/testsuite/gdb.trace/tspeed.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/fa/fa93cc8f35dbed69c3c47aa803686d87f2143779/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fa/fa93cc8f35dbed69c3c47aa803686d87f2143779//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fa/fa93cc8f35dbed69c3c47aa803686d87f2143779//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-03 12:31 [binutils-gdb] Fix compilation error with clang in gdb/testsuite/gdb.base/jit-main.c gdb-buildbot
@ 2020-05-03 12:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-03 12:31 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/2905

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        e0c45f305525bbc3fd95024e4517a52d1c371868

Subject of commit:
        Fix compilation error with clang in gdb/testsuite/gdb.base/jit-main.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e0c45f305525bbc3fd95024e4517a52d1c371868/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/e0/e0c45f305525bbc3fd95024e4517a52d1c371868//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e0c45f305525bbc3fd95024e4517a52d1c371868//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-03 10:32 [binutils-gdb] When bfd/pdp11.c was copied from bfd/aoutx.h, the #defines for external symbol types N_TEXT etc. were #undef'd and then #define'd with new values. But N_STAB was not changed even though the new value for N_EXT overlapped with it. This caused aout_link_write_symbols() to treat global symbols referenced in the source but defined in a linker script as undefined gdb-buildbot
@ 2020-05-03 10:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-03 10: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/2904

Author:
        Stephen Casner <casner@acm.org>

Commit tested:
        23c8270e9dc60bb78c1800b7deedc117efdb9e92

Subject of commit:
        When bfd/pdp11.c was copied from bfd/aoutx.h, the #defines for external symbol types N_TEXT etc. were #undef'd and then #define'd with new values.  But N_STAB was not changed even though the new value for N_EXT overlapped with it.  This caused aout_link_write_symbols() to treat global symbols referenced in the source but defined in a linker script as undefined.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/23/23c8270e9dc60bb78c1800b7deedc117efdb9e92/

*** 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/Fedora-i686/23/23c8270e9dc60bb78c1800b7deedc117efdb9e92//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/23/23c8270e9dc60bb78c1800b7deedc117efdb9e92//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-03  6:38 [binutils-gdb] [AArch64, Binutils] Make hint space instructions valid for Armv8-a gdb-buildbot
@ 2020-05-03  6:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-03  6:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2902

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/Fedora-i686/8a/8a6e1d1d7f2fb09245fe42f7b8dc6d53f61df1d1/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS:"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/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/Fedora-i686/8a/8a6e1d1d7f2fb09245fe42f7b8dc6d53f61df1d1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-03  4:18 [binutils-gdb] PowerPC64: remove empty .rela.dyn (.rela.branch_lt) gdb-buildbot
@ 2020-05-03  4:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-03  4:18 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2901

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        2efec98b28bbc89fc8e062709c7e28cc8a56ee40

Subject of commit:
        PowerPC64: remove empty .rela.dyn (.rela.branch_lt)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2e/2efec98b28bbc89fc8e062709c7e28cc8a56ee40/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2e/2efec98b28bbc89fc8e062709c7e28cc8a56ee40//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2e/2efec98b28bbc89fc8e062709c7e28cc8a56ee40//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-02 13:45 [binutils-gdb] Fix gdb.base/attach-twice.c build on NetBSD gdb-buildbot
@ 2020-05-02 13:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-02 13:45 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/2896

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        4ddfec930ca5bd57800ebc71daef66f685a6de4d

Subject of commit:
        Fix gdb.base/attach-twice.c build on NetBSD

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4d/4ddfec930ca5bd57800ebc71daef66f685a6de4d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print "
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-i686/4d/4ddfec930ca5bd57800ebc71daef66f685a6de4d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4d/4ddfec930ca5bd57800ebc71daef66f685a6de4d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-02 11:46 [binutils-gdb] Fix the build of fork-running-state.c on NetBSD gdb-buildbot
@ 2020-05-02 11:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-02 11:46 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/2895

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        2bed205e44ad853f10416e970de2534554f8cf18

Subject of commit:
        Fix the build of fork-running-state.c on NetBSD

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2b/2bed205e44ad853f10416e970de2534554f8cf18/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2b/2bed205e44ad853f10416e970de2534554f8cf18//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2b/2bed205e44ad853f10416e970de2534554f8cf18//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-02  9:50 [binutils-gdb] Replace most calls to help_list and cmd_show_list gdb-buildbot
@ 2020-05-02  9:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-02  9:50 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/2894

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/Fedora-i686/07/0743fc83c03da263953dfc393a66744a08770365/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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=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-i686/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/Fedora-i686/07/0743fc83c03da263953dfc393a66744a08770365//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-02  7:51 [binutils-gdb] [PATCH v2] binutils: arm: Fix disassembly of conditional VDUPs gdb-buildbot
@ 2020-05-02  7:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-02  7:51 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/2893

Author:
        Fredrik Strupe <fredrik@strupe.net>

Commit tested:
        e409955ddcc33743044f217a3cc0541e0e6211b7

Subject of commit:
        [PATCH v2] binutils: arm: Fix disassembly of conditional VDUPs.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e4/e409955ddcc33743044f217a3cc0541e0e6211b7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e4/e409955ddcc33743044f217a3cc0541e0e6211b7//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e4/e409955ddcc33743044f217a3cc0541e0e6211b7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-02  6:00 [binutils-gdb] Remove obsolete and unused inf_ptrace_target::auxv_parse gdb-buildbot
@ 2020-05-02  6:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-02  6:00 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/2892

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/Fedora-i686/35/3557f442a1881271652581b4a66c206d5b348c5d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/35/3557f442a1881271652581b4a66c206d5b348c5d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-02  1:27 [binutils-gdb] gdb: is_linked_with_cygwin_dll: mention filename in warning messages gdb-buildbot
@ 2020-05-02  1:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-02  1:27 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/2890

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        161972082386042858ee68b5335ddd09648e5bea

Subject of commit:
        gdb: is_linked_with_cygwin_dll: mention filename in warning messages

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/16/161972082386042858ee68b5335ddd09648e5bea/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/16/161972082386042858ee68b5335ddd09648e5bea//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/16/161972082386042858ee68b5335ddd09648e5bea//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-01 23:39 [binutils-gdb] gdb: is_linked_with_cygwin_dll: handle import table not at beginning of .idata section gdb-buildbot
@ 2020-05-01 23:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-01 23:42 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2889

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        00ac85d3751b763155adb4e9d15dd134399b4e77

Subject of commit:
        gdb: is_linked_with_cygwin_dll: handle import table not at beginning of .idata section

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/00/00ac85d3751b763155adb4e9d15dd134399b4e77/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-print: cmd complete "frame apply all print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply all print -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/00/00ac85d3751b763155adb4e9d15dd134399b4e77//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/00/00ac85d3751b763155adb4e9d15dd134399b4e77//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-01 21:13 [binutils-gdb] Stop the MIPS assembler from accepting ifunc symbols gdb-buildbot
@ 2020-05-01 21:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-01 21:13 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/2888

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        8e4979ac1ea78147ecbcbf81af5e946873dda079

Subject of commit:
        Stop the MIPS assembler from accepting ifunc symbols.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8e/8e4979ac1ea78147ecbcbf81af5e946873dda079/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8e/8e4979ac1ea78147ecbcbf81af5e946873dda079//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8e/8e4979ac1ea78147ecbcbf81af5e946873dda079//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-01 19:18 [binutils-gdb] Refactor delete_program_space as a destructor gdb-buildbot
@ 2020-05-01 19:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-01 19:29 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2887

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        381ce63f2f010ef5c246be720ef177cf46a19179

Subject of commit:
        Refactor delete_program_space as a destructor

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/38/381ce63f2f010ef5c246be720ef177cf46a19179/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/38/381ce63f2f010ef5c246be720ef177cf46a19179//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/38/381ce63f2f010ef5c246be720ef177cf46a19179//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-01 12:46 [binutils-gdb] Fix compilation of python/python.c for Python 3.9 gdb-buildbot
@ 2020-05-01 12:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-01 12:46 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/2884

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/Fedora-i686/97/97ed802d1531632efba69f34accd811217579d0b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/97/97ed802d1531632efba69f34accd811217579d0b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-01 10:59 [binutils-gdb] PR25827, Null pointer dereferencing in scan_unit_for_symbols gdb-buildbot
@ 2020-05-01 10:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-01 10:59 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/2883

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/Fedora-i686/ae/aec72fda3b320c36eb99fc1c4cf95b10fc026729/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ae/aec72fda3b320c36eb99fc1c4cf95b10fc026729//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-01  9:03 [binutils-gdb] cpu, gas, opcodes: support for eBPF JMP32 instruction class gdb-buildbot
@ 2020-05-01  9:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-01  9:03 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2882

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/Fedora-i686/c5/c54a9b56696e584c2b8c7146caac337c063f5516/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/c5/c54a9b56696e584c2b8c7146caac337c063f5516//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-01  7:02 [binutils-gdb] [gdb/testsuite] Fix maint-expand-symbols-header-file.exp for cc-with-gdb-index gdb-buildbot
@ 2020-05-01  7:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-01  7:02 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/2881

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        d191d716f38b41720c4955823fe6c178cf0786f0

Subject of commit:
        [gdb/testsuite] Fix maint-expand-symbols-header-file.exp for cc-with-gdb-index

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d1/d191d716f38b41720c4955823fe6c178cf0786f0/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "thread apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 print "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d1/d191d716f38b41720c4955823fe6c178cf0786f0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d1/d191d716f38b41720c4955823fe6c178cf0786f0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-01  5:17 [binutils-gdb] PowerPC64 GOT reloc reserving PLT entry for ifunc gdb-buildbot
@ 2020-05-01  5:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-01  5:17 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/2880

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/Fedora-i686/21/2165dc8d90ef9618a1db9bc596f433b02b7cc54a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "thread apply 1 frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 frame apply 1 print "
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/21/2165dc8d90ef9618a1db9bc596f433b02b7cc54a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-05-01  3:29 [binutils-gdb] PowerPC64 GOT reloc optimisation gdb-buildbot
@ 2020-05-01  3:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-05-01  3:29 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/2879

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/Fedora-i686/06/06507dab6172582d3924a3d7dc92a9e7d4ab60ff/

*** Diff to previous build ***
==============================================
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 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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/06/06507dab6172582d3924a3d7dc92a9e7d4ab60ff//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-30 23:27 [binutils-gdb] Fix OpenBSD build error gdb-buildbot
@ 2020-04-30 23:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30 23:27 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/2877

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        c7d648090384ef01cf8ea2018bf952ed60a9677d

Subject of commit:
        Fix OpenBSD build error.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c7d648090384ef01cf8ea2018bf952ed60a9677d/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c7d648090384ef01cf8ea2018bf952ed60a9677d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c7d648090384ef01cf8ea2018bf952ed60a9677d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-30 21:26 [binutils-gdb] Use debug_printf in windows-nat.c gdb-buildbot
@ 2020-04-30 21:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30 21:26 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2876

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/Fedora-i686/ce/ce127a96c912965e0fe24906d6083e5e9c79a92f/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ce/ce127a96c912965e0fe24906d6083e5e9c79a92f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-30 19:09 [binutils-gdb] gdb: Don't corrupt completions hash when expanding the hash table gdb-buildbot
@ 2020-04-30 19:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30 19:09 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/2875

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        99f1bc6aaa2810fa4600b1cfd13d2d52678e1a66

Subject of commit:
        gdb: Don't corrupt completions hash when expanding the hash table

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/99/99f1bc6aaa2810fa4600b1cfd13d2d52678e1a66/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/99/99f1bc6aaa2810fa4600b1cfd13d2d52678e1a66//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/99/99f1bc6aaa2810fa4600b1cfd13d2d52678e1a66//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-30 16:00 [binutils-gdb] Better handling of realpath() failure in windows_make_so() on Cygwin gdb-buildbot
@ 2020-04-30 16:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30 16:00 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2874

Author:
        Jon Turney <jon.turney@dronecode.org.uk>

Commit tested:
        a0e9b53238c3033222c53b1654da535c0743ab6e

Subject of commit:
        Better handling of realpath() failure in windows_make_so() on Cygwin

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a0/a0e9b53238c3033222c53b1654da535c0743ab6e/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a0/a0e9b53238c3033222c53b1654da535c0743ab6e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a0/a0e9b53238c3033222c53b1654da535c0743ab6e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-04-30 15:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30 15:03 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/2873

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/Fedora-i686/95/95a515681272fa3a79624279c1579cce14ad61c0/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/95/95a515681272fa3a79624279c1579cce14ad61c0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-30 13:14 [binutils-gdb] PR25823, Use after free in bfd_hash_lookup gdb-buildbot
@ 2020-04-30 13:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30 13:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2872

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        7ecb51549ab1ec22aba5aaf34b70323cf0b8509a

Subject of commit:
        PR25823, Use after free in bfd_hash_lookup

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7e/7ecb51549ab1ec22aba5aaf34b70323cf0b8509a/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7e/7ecb51549ab1ec22aba5aaf34b70323cf0b8509a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7e/7ecb51549ab1ec22aba5aaf34b70323cf0b8509a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-30 10:53 [binutils-gdb] [PATCH v2 2/2] coff-go32: support extended relocations gdb-buildbot
@ 2020-04-30 10:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30 10:53 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/2871

Author:
        Juan Manuel Guerrero <juan.guerrero@gmx.de>

Commit tested:
        f717994fe84df26ec4e4fe4104e018ece8b5b9cf

Subject of commit:
        [PATCH v2 2/2] coff-go32: support extended relocations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f7/f717994fe84df26ec4e4fe4104e018ece8b5b9cf/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f7/f717994fe84df26ec4e4fe4104e018ece8b5b9cf//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f7/f717994fe84df26ec4e4fe4104e018ece8b5b9cf//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-30  9:00 [binutils-gdb] Implement IP_STAT+IP_STATUS (aliases of the same format) on NetBSD gdb-buildbot
@ 2020-04-30  9:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30  9:00 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/2870

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        06ca5dd49ac45e814ca167f441ac0b191b50bb37

Subject of commit:
        Implement IP_STAT+IP_STATUS (aliases of the same format) on NetBSD

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/06/06ca5dd49ac45e814ca167f441ac0b191b50bb37/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/06/06ca5dd49ac45e814ca167f441ac0b191b50bb37//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/06/06ca5dd49ac45e814ca167f441ac0b191b50bb37//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-30  7:14 [binutils-gdb] The assembler only supports 32-bit stabs. So set sh_entsize unconditionally to 12 gdb-buildbot
@ 2020-04-30  7:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30  7:17 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2869

Author:
        Fangrui Song <maskray@google.com>

Commit tested:
        34ca55313b8e6c0f6354f2dc5a3a35e38c32ae82

Subject of commit:
        The assembler only supports 32-bit stabs. So set sh_entsize unconditionally to 12.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/34/34ca55313b8e6c0f6354f2dc5a3a35e38c32ae82/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/34/34ca55313b8e6c0f6354f2dc5a3a35e38c32ae82//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/34/34ca55313b8e6c0f6354f2dc5a3a35e38c32ae82//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-30  5:19 [binutils-gdb] Fixes for the magic number used in PDP11 AOUT binaries gdb-buildbot
@ 2020-04-30  5:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30  5:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2868

Author:
        Stephen Casner <casner@acm.org>

Commit tested:
        fa1477dc34e6ce19b90ff0171074c295133730a3

Subject of commit:
        Fixes for the magic number used in PDP11 AOUT binaries.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/fa/fa1477dc34e6ce19b90ff0171074c295133730a3/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fa/fa1477dc34e6ce19b90ff0171074c295133730a3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fa/fa1477dc34e6ce19b90ff0171074c295133730a3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-30  2:14 [binutils-gdb] [gdb] Fix missing symtab includes gdb-buildbot
@ 2020-04-30  3:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30  3:30 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/2867

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/Fedora-i686/19/194d088fb1fa6c3c341994ca247d172c3f08c2da/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/19/194d088fb1fa6c3c341994ca247d172c3f08c2da//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-30  1:21 [binutils-gdb] [gdb] Expand symbolless symtabs using maint expand-symtabs gdb-buildbot
@ 2020-04-30  1:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-30  1:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2866

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        c1a66c0629d3b62075a73793f1a7e7393e23e7e2

Subject of commit:
        [gdb] Expand symbolless symtabs using maint expand-symtabs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c1/c1a66c0629d3b62075a73793f1a7e7393e23e7e2/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c1/c1a66c0629d3b62075a73793f1a7e7393e23e7e2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c1/c1a66c0629d3b62075a73793f1a7e7393e23e7e2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-29 20:57 [binutils-gdb] Remove gdb_fildes_t gdb-buildbot
@ 2020-04-29 20:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-29 20:58 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2864

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/Fedora-i686/73/73944e9f6317fa826044d79a6c15ea4448270ee8/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/73/73944e9f6317fa826044d79a6c15ea4448270ee8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-29 18:53 [binutils-gdb] Move gdb_notifier comment gdb-buildbot
@ 2020-04-29 18:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-29 18:53 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2863

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        7990abcc9b7d96f16ea51076685d4dfa7d503fe3

Subject of commit:
        Move gdb_notifier comment

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/79/7990abcc9b7d96f16ea51076685d4dfa7d503fe3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/attach.exp: do_call_attach_tests: continue until exit
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/79/7990abcc9b7d96f16ea51076685d4dfa7d503fe3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/79/7990abcc9b7d96f16ea51076685d4dfa7d503fe3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-29 14:17 [binutils-gdb] Move event-loop.[ch] to gdbsupport/ gdb-buildbot
@ 2020-04-29 14:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-29 14:17 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2860

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        400b5eca00033a782467d28b23392b9cf428c2b1

Subject of commit:
        Move event-loop.[ch] to gdbsupport/

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/40/400b5eca00033a782467d28b23392b9cf428c2b1/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/40/400b5eca00033a782467d28b23392b9cf428c2b1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/40/400b5eca00033a782467d28b23392b9cf428c2b1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-29 10:11 [binutils-gdb] Introduce and use flush_streams gdb-buildbot
@ 2020-04-29 10:11 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-29 10:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2858

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c1cd3163d99efe4f7cbe7f228859fd93f28e06bb

Subject of commit:
        Introduce and use flush_streams

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c1/c1cd3163d99efe4f7cbe7f228859fd93f28e06bb/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c1/c1cd3163d99efe4f7cbe7f228859fd93f28e06bb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c1/c1cd3163d99efe4f7cbe7f228859fd93f28e06bb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-29  8:23 [binutils-gdb] Use warning in event-loop gdb-buildbot
@ 2020-04-29  8:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-29  8:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2857

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013

Subject of commit:
        Use warning in event-loop

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/29/29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-29  0:55 [binutils-gdb] Move gdb_select.h to gdbsupport/ gdb-buildbot
@ 2020-04-29  0:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-29  0:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2854

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        06cc9596e8c8e431dcdfe2ce3f494e1431e95d6f

Subject of commit:
        Move gdb_select.h to gdbsupport/

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/06/06cc9596e8c8e431dcdfe2ce3f494e1431e95d6f/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/06/06cc9596e8c8e431dcdfe2ce3f494e1431e95d6f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/06/06cc9596e8c8e431dcdfe2ce3f494e1431e95d6f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-28 23:06 [binutils-gdb] Move event-loop configury to common.m4 gdb-buildbot
@ 2020-04-28 23:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-28 23:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2853

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        8ae8e197961644c3621591d0ac5738e7efff64da

Subject of commit:
        Move event-loop configury to common.m4

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8a/8ae8e197961644c3621591d0ac5738e7efff64da/

*** 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/Fedora-i686/8a/8ae8e197961644c3621591d0ac5738e7efff64da//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8a/8ae8e197961644c3621591d0ac5738e7efff64da//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-28 20:56 [binutils-gdb] Move start_event_loop out of event-loop.c gdb-buildbot
@ 2020-04-28 20:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-28 20:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2852

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        58cf28e860429822ab0aa93a56e130c4430df396

Subject of commit:
        Move start_event_loop out of event-loop.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/58/58cf28e860429822ab0aa93a56e130c4430df396/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/58/58cf28e860429822ab0aa93a56e130c4430df396//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/58/58cf28e860429822ab0aa93a56e130c4430df396//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-28 18:54 [binutils-gdb] Update my email address on MAINTAINERS gdb-buildbot
@ 2020-04-28 18:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-28 18:54 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2851

Author:
        Sergio Durigan Junior <sergiodj@sergiodj.net>

Commit tested:
        b7f999aee35f1a40739adea8b11805ceef061c95

Subject of commit:
        Update my email address on MAINTAINERS

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b7/b7f999aee35f1a40739adea8b11805ceef061c95/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b7/b7f999aee35f1a40739adea8b11805ceef061c95//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b7/b7f999aee35f1a40739adea8b11805ceef061c95//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-28 16:39 [binutils-gdb] [gdb/testsuite] Fix gdb.ada/catch_ex_std.exp gnatlink FAIL gdb-buildbot
@ 2020-04-28 16:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-28 16:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2850

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        dd1cab0694592099854e66467319253954c93764

Subject of commit:
        [gdb/testsuite] Fix gdb.ada/catch_ex_std.exp gnatlink FAIL

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dd1cab0694592099854e66467319253954c93764/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dd1cab0694592099854e66467319253954c93764//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dd1cab0694592099854e66467319253954c93764//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-28 14:48 [binutils-gdb] Implement IP_MINIMAL and IP_ALL on NetBSD gdb-buildbot
@ 2020-04-28 14:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-28 14:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2849

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/Fedora-i686/10/1085dfd4e1242fab231b26093882f4e2526d14d0/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/10/1085dfd4e1242fab231b26093882f4e2526d14d0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-28 12:30 [binutils-gdb] Implement "info proc cmdline" for NetBSD gdb-buildbot
@ 2020-04-28 12:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-28 12:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2848

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        49d1d1f53df552f0592b1cc4cc9a74db70d5ffa7

Subject of commit:
        Implement "info proc cmdline" for NetBSD

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/49/49d1d1f53df552f0592b1cc4cc9a74db70d5ffa7/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
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-i686/49/49d1d1f53df552f0592b1cc4cc9a74db70d5ffa7//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/49/49d1d1f53df552f0592b1cc4cc9a74db70d5ffa7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-28  4:05 [binutils-gdb] Implement "info proc mappings" for NetBSD gdb-buildbot
@ 2020-04-28  4:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-28  4:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2845

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/Fedora-i686/54/54b8cbd0e4063846349634aefa8ed1a3c0ac62ca/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/54/54b8cbd0e4063846349634aefa8ed1a3c0ac62ca//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-27 19:18 [binutils-gdb] gdb: fix undefined behavior reported in copy_bitwise gdb-buildbot
@ 2020-04-27 19:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-27 19:18 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2842

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/Fedora-i686/cf/cf83625da29d1239e97f1eb4d145f347cb741889/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/cf/cf83625da29d1239e97f1eb4d145f347cb741889//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-27 17:08 [binutils-gdb] Avoid infinite recursion in get_msymbol_address gdb-buildbot
@ 2020-04-27 17:08 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-27 17:08 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2841

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        0c4311ab90e46d2ae0cc29160641b92220d10299

Subject of commit:
        Avoid infinite recursion in get_msymbol_address

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0c/0c4311ab90e46d2ae0cc29160641b92220d10299/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0c/0c4311ab90e46d2ae0cc29160641b92220d10299//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0c/0c4311ab90e46d2ae0cc29160641b92220d10299//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-27 14:54 [binutils-gdb] Skip separate debug files when handling copy relocations gdb-buildbot
@ 2020-04-27 14:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-27 14:54 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2840

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        3e65b3e9aff265b8db711f742ea527b4c2e36910

Subject of commit:
        Skip separate debug files when handling copy relocations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3e/3e65b3e9aff265b8db711f742ea527b4c2e36910/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3e/3e65b3e9aff265b8db711f742ea527b4c2e36910//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3e/3e65b3e9aff265b8db711f742ea527b4c2e36910//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-27 13:05 [binutils-gdb] Fix debugging of WOW64 processes gdb-buildbot
@ 2020-04-27 13:11 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-27 13:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2839

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        13302e956fb7a0c700f53f16d985c9e6207e331c

Subject of commit:
        Fix debugging of WOW64 processes

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/13/13302e956fb7a0c700f53f16d985c9e6207e331c/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/13/13302e956fb7a0c700f53f16d985c9e6207e331c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/13/13302e956fb7a0c700f53f16d985c9e6207e331c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-27 10:51 [binutils-gdb] [gdb/testsuite] Fix -readnow FAIL in gdb.base/style.exp gdb-buildbot
@ 2020-04-27 10:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-27 10:51 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2838

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/Fedora-i686/71/71ea2b6be8228759230cef7d5a7ab0b45b77c26c/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/71/71ea2b6be8228759230cef7d5a7ab0b45b77c26c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-27  9:09 [binutils-gdb] [gdb/cli] Don't let python colorize strip leading newlines gdb-buildbot
@ 2020-04-27  9:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-27  9:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2837

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        bdfc1e8a0b176257bfc700de755463d3aaf69849

Subject of commit:
        [gdb/cli] Don't let python colorize strip leading newlines

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/bd/bdfc1e8a0b176257bfc700de755463d3aaf69849/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "thread apply all print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply all print -"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bd/bdfc1e8a0b176257bfc700de755463d3aaf69849//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bd/bdfc1e8a0b176257bfc700de755463d3aaf69849//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-27  7:10 [binutils-gdb] gdb: move Tom de Vries to Global Maintainers gdb-buildbot
@ 2020-04-27  7:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-27  7:10 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2836

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/Fedora-i686/f4/f4460aec690046a531ec6f7826eae8b2938f523c/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/f4/f4460aec690046a531ec6f7826eae8b2938f523c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-27  5:12 [binutils-gdb] Partially revert my UB fix in record_line gdb-buildbot
@ 2020-04-27  5:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-27  5:12 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2835

Author:
        Bernd Edlinger <bernd.edlinger@hotmail.de>

Commit tested:
        a25198bba24b3443d2e3d72300c3308ccc742325

Subject of commit:
        Partially revert my UB fix in record_line

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a2/a25198bba24b3443d2e3d72300c3308ccc742325/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a2/a25198bba24b3443d2e3d72300c3308ccc742325//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a2/a25198bba24b3443d2e3d72300c3308ccc742325//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-26 23:48 [binutils-gdb] Implement stopped_by_sw_breakpoint for Windows gdbserver gdb-buildbot
@ 2020-04-26 23:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-26 23:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2832

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        523d4f80c32f43a6b009645947b94f87df35f79f

Subject of commit:
        Implement stopped_by_sw_breakpoint for Windows gdbserver

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/52/523d4f80c32f43a6b009645947b94f87df35f79f/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/52/523d4f80c32f43a6b009645947b94f87df35f79f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/52/523d4f80c32f43a6b009645947b94f87df35f79f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-26 21:51 [binutils-gdb] Introduce win32_target_ops::decr_pc_after_break gdb-buildbot
@ 2020-04-26 21:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-26 21:51 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2831

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        e54e59297a747bb4f396345aa090d43f155b5576

Subject of commit:
        Introduce win32_target_ops::decr_pc_after_break

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e5/e54e59297a747bb4f396345aa090d43f155b5576/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS::"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e5/e54e59297a747bb4f396345aa090d43f155b5576//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e5/e54e59297a747bb4f396345aa090d43f155b5576//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-26 19:55 [binutils-gdb] Add read_pc / write_pc support to win32-low gdb-buildbot
@ 2020-04-26 19:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-26 19:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2830

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        d6225aff7a4f11c3443515c0d8dad12351b97575

Subject of commit:
        Add read_pc / write_pc support to win32-low

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d6/d6225aff7a4f11c3443515c0d8dad12351b97575/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d6/d6225aff7a4f11c3443515c0d8dad12351b97575//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d6/d6225aff7a4f11c3443515c0d8dad12351b97575//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-26 18:15 [binutils-gdb] Make last_wait_event static gdb-buildbot
@ 2020-04-26 18:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-26 18:16 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2829

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        71fbdbafe07a4edb2ac88705e03e2cb14b3c77da

Subject of commit:
        Make last_wait_event static

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/71/71fbdbafe07a4edb2ac88705e03e2cb14b3c77da/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/71/71fbdbafe07a4edb2ac88705e03e2cb14b3c77da//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/71/71fbdbafe07a4edb2ac88705e03e2cb14b3c77da//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-26 15:55 [binutils-gdb] Move wait_for_debug_event to nat/windows-nat.c gdb-buildbot
@ 2020-04-26 15:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-26 15:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2828

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        2c1d95e8697f64713d0f60f7b9231d13a3f6a145

Subject of commit:
        Move wait_for_debug_event to nat/windows-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2c/2c1d95e8697f64713d0f60f7b9231d13a3f6a145/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2c/2c1d95e8697f64713d0f60f7b9231d13a3f6a145//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2c/2c1d95e8697f64713d0f60f7b9231d13a3f6a145//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-26 14:13 [binutils-gdb] Introduce fetch_pending_stop gdb-buildbot
@ 2020-04-26 14:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-26 14:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2827

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        d2977bc4253614907058d3a339875683d8215065

Subject of commit:
        Introduce fetch_pending_stop

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d2/d2977bc4253614907058d3a339875683d8215065/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d2/d2977bc4253614907058d3a339875683d8215065//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d2/d2977bc4253614907058d3a339875683d8215065//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-26 10:15 [binutils-gdb] Share handle_exception gdb-buildbot
@ 2020-04-26 10:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-26 10:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2825

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/Fedora-i686/8d/8d30e395779603a8d36fa8bdfddba88a312552f4/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/8d/8d30e395779603a8d36fa8bdfddba88a312552f4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-25 23:59 [binutils-gdb] Share some Windows-related globals gdb-buildbot
@ 2020-04-25 23:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-25 23:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2820

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        3c76026df83bed7d97ed45e5b906b679a154b076

Subject of commit:
        Share some Windows-related globals

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3c/3c76026df83bed7d97ed45e5b906b679a154b076/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3c/3c76026df83bed7d97ed45e5b906b679a154b076//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3c/3c76026df83bed7d97ed45e5b906b679a154b076//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-25 21:00 [binutils-gdb] Share get_image_name between gdb and gdbserver gdb-buildbot
@ 2020-04-25 21:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-25 21:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2819

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        9d8679cc712d4c31d218cc141fe700d8e6394964

Subject of commit:
        Share get_image_name between gdb and gdbserver

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9d/9d8679cc712d4c31d218cc141fe700d8e6394964/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/9d/9d8679cc712d4c31d218cc141fe700d8e6394964//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9d/9d8679cc712d4c31d218cc141fe700d8e6394964//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-25 11:20 [binutils-gdb] Call CloseHandle from ~windows_thread_info gdb-buildbot
@ 2020-04-25 11:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-25 11:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2813

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        65bafd5b156bcb4f308f304e55a03e13f4eb2bed

Subject of commit:
        Call CloseHandle from ~windows_thread_info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/65/65bafd5b156bcb4f308f304e55a03e13f4eb2bed/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/65/65bafd5b156bcb4f308f304e55a03e13f4eb2bed//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/65/65bafd5b156bcb4f308f304e55a03e13f4eb2bed//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-25  4:16 [binutils-gdb] Share Windows thread-suspend and -resume code gdb-buildbot
@ 2020-04-25  4:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-25  4:16 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2810

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/Fedora-i686/98/98a032873232f9685dc7a5d632481c1488b9f1c5/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/98/98a032873232f9685dc7a5d632481c1488b9f1c5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-25  1:35 [binutils-gdb] Use lwp, not tid, for Windows thread id gdb-buildbot
@ 2020-04-25  1:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-25  1:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2809

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/Fedora-i686/7c/7c7411bcabdbe88c6a2f1b9a6090eea0dc50686f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/7c/7c7411bcabdbe88c6a2f1b9a6090eea0dc50686f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-24 22:41 [binutils-gdb] Make windows_thread_info::name a unique_xmalloc_ptr gdb-buildbot
@ 2020-04-24 22:41 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-24 22:41 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2808

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        2950fdf7423a404f6ebc691606d04917fd68228a

Subject of commit:
        Make windows_thread_info::name a unique_xmalloc_ptr

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/29/2950fdf7423a404f6ebc691606d04917fd68228a/

*** 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/Fedora-i686/29/2950fdf7423a404f6ebc691606d04917fd68228a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/2950fdf7423a404f6ebc691606d04917fd68228a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-24 19:34 [binutils-gdb] Change two windows_thread_info members to "bool" gdb-buildbot
@ 2020-04-24 19:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-24 19:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2807

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/Fedora-i686/62/62fe396b1cba6b0c3d06b758d9f8254c6d538ad8/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/62/62fe396b1cba6b0c3d06b758d9f8254c6d538ad8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-24 16:45 [binutils-gdb] Use new and delete for windows_thread_info gdb-buildbot
@ 2020-04-24 16:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-24 16:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2806

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        e9534bd257ac9ea2f7921e8000d27c5dc4477b4e

Subject of commit:
        Use new and delete for windows_thread_info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e9/e9534bd257ac9ea2f7921e8000d27c5dc4477b4e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/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-i686/e9/e9534bd257ac9ea2f7921e8000d27c5dc4477b4e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e9/e9534bd257ac9ea2f7921e8000d27c5dc4477b4e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-24 13:55 [binutils-gdb] Share windows_thread_info between gdb and gdbserver gdb-buildbot
@ 2020-04-24 13:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-24 13:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2805

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        ae1f8880758d8087ad9fdb137d45c4abc1137b52

Subject of commit:
        Share windows_thread_info between gdb and gdbserver

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ae/ae1f8880758d8087ad9fdb137d45c4abc1137b52/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply level 0 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print -"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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: tab complete "b 'cpls.cc':ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ae/ae1f8880758d8087ad9fdb137d45c4abc1137b52//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ae/ae1f8880758d8087ad9fdb137d45c4abc1137b52//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-24 11:09 [binutils-gdb] Rename windows_thread_info::id to "tid" gdb-buildbot
@ 2020-04-24 11:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-24 11:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2804

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        55a1e039f9d5e2ae144b64f52f2034e4f9177336

Subject of commit:
        Rename windows_thread_info::id to "tid"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/55/55a1e039f9d5e2ae144b64f52f2034e4f9177336/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> FAIL: gdb.base/valgrind-disp-step.exp: continue to main
PASS -> UNRESOLVED: gdb.base/valgrind-disp-step.exp: displaced off: set displaced-stepping off
new FAIL: gdb.base/valgrind-disp-step.exp: info breakpoints
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: cmd complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
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-i686/55/55a1e039f9d5e2ae144b64f52f2034e4f9177336//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/55/55a1e039f9d5e2ae144b64f52f2034e4f9177336//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-24  8:35 [binutils-gdb] Rename win32_thread_info to windows_thread_info gdb-buildbot
@ 2020-04-24  8:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-24  8:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2803

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/Fedora-i686/e5/e56f8ccb07890fc2c0413c530d27d105c74f622c/

*** Diff to previous build ***
==============================================
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> 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-i686/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/Fedora-i686/e5/e56f8ccb07890fc2c0413c530d27d105c74f622c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-24  5:56 [binutils-gdb] Remove the "next" field from windows_thread_info gdb-buildbot
@ 2020-04-24  5:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-24  5:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2802

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/Fedora-i686/93/93366324f5232374bc19d94d94b5ed6159326240/

*** 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 -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-i686/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/Fedora-i686/93/93366324f5232374bc19d94d94b5ed6159326240//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-24  3:04 [binutils-gdb] gdb: stop using host-dependent signal numbers in windows-tdep.c gdb-buildbot
@ 2020-04-24  3:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-24  3:04 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2801

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/Fedora-i686/0f/0f2265e2461babf685ff14f4ec9a9c60898453fe/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/0f/0f2265e2461babf685ff14f4ec9a9c60898453fe//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-24  0:15 [binutils-gdb] Remove objfile parameter from read_gdb_index_from_buffer gdb-buildbot
@ 2020-04-24  0:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-24  0:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2800

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/Fedora-i686/38/3810f182ee3b14d36b37938e897ea871f1175b46/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/38/3810f182ee3b14d36b37938e897ea871f1175b46//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-23 21:33 [binutils-gdb] [gdb/testsuite] Fix imported-unit.exp FAIL without psymtabs gdb-buildbot
@ 2020-04-23 21:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-23 21:33 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2799

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        14ca8ecfcb8628485f734af4b548933124990436

Subject of commit:
        [gdb/testsuite] Fix imported-unit.exp FAIL without psymtabs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/14/14ca8ecfcb8628485f734af4b548933124990436/

*** Diff to previous build ***
==============================================
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/14/14ca8ecfcb8628485f734af4b548933124990436//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/14/14ca8ecfcb8628485f734af4b548933124990436//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-23 18:44 [binutils-gdb] [gdb/testsuite] Add gcc/94469 xfails to gdb.ada/call_pn.exp gdb-buildbot
@ 2020-04-23 18:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-23 18:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2798

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        e21d048f8ad95002e61aec25160fa6fabfab21a4

Subject of commit:
        [gdb/testsuite] Add gcc/94469 xfails to gdb.ada/call_pn.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e2/e21d048f8ad95002e61aec25160fa6fabfab21a4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.linespec/cp-completion-aliases.exp: cmd complete "break get_som"
PASS -> FAIL: gdb.linespec/cp-completion-aliases.exp: tab complete "break get_som"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd 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/explicit.exp: complete unique label name reversed: cmd complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
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-i686/e2/e21d048f8ad95002e61aec25160fa6fabfab21a4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e2/e21d048f8ad95002e61aec25160fa6fabfab21a4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-23 15:59 [binutils-gdb] Define NetBSD specific skip_solib_resolver gdb-buildbot
@ 2020-04-23 15:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-23 15:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2797

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/Fedora-i686/06/063f8e80b0858f3dfc27f7f5bbc3ffb1967095bc/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/06/063f8e80b0858f3dfc27f7f5bbc3ffb1967095bc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-23 13:05 [binutils-gdb] DWARFv5: Info address command error in gdb with DWARFfv5 gdb-buildbot
@ 2020-04-23 13:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-23 13:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2796

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/Fedora-i686/85/85a9510ccbe8d897471cdd4f25a475329ae24498/

*** Diff to previous build ***
==============================================
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/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/Fedora-i686/85/85a9510ccbe8d897471cdd4f25a475329ae24498//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-23 10:20 [binutils-gdb] DWARFv5: Handle location list for split dwarf gdb-buildbot
@ 2020-04-23 10:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-23 10:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2795

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/Fedora-i686/9f/9fc3eaae69b2a60c5688d6bfe334829a3964b17f/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/9f/9fc3eaae69b2a60c5688d6bfe334829a3964b17f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-23  8:00 [binutils-gdb] Support for DW_AT_loclists_base and DW_FORM_loclistx gdb-buildbot
@ 2020-04-23  8:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-23  8:00 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2794

Author:
        nitachra <Nitika.Achra@amd.com>

Commit tested:
        4114425321d5c380bc8fb5344db8bc8664c170c6

Subject of commit:
        Support for DW_AT_loclists_base and DW_FORM_loclistx.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/41/4114425321d5c380bc8fb5344db8bc8664c170c6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
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/Fedora-i686/41/4114425321d5c380bc8fb5344db8bc8664c170c6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/41/4114425321d5c380bc8fb5344db8bc8664c170c6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-23  5:40 [binutils-gdb] gdb: small cleanups in dwarf2_psymtab constructors gdb-buildbot
@ 2020-04-23  5:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-23  5:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2793

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9f4e76a4b3f61d8182a4a7afe0e479ea7e3093a3

Subject of commit:
        gdb: small cleanups in dwarf2_psymtab constructors

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9f/9f4e76a4b3f61d8182a4a7afe0e479ea7e3093a3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/9f/9f4e76a4b3f61d8182a4a7afe0e479ea7e3093a3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9f/9f4e76a4b3f61d8182a4a7afe0e479ea7e3093a3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-23  0:34 [binutils-gdb] ld: Fix several 32-bit SPARC plugin tests gdb-buildbot
@ 2020-04-23  0:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-23  0:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2791

Author:
        Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Commit tested:
        3e97ba7d583055bdd5439dd300c59a2f5bc02476

Subject of commit:
        ld: Fix several 32-bit SPARC plugin tests

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3e/3e97ba7d583055bdd5439dd300c59a2f5bc02476/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/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-i686/3e/3e97ba7d583055bdd5439dd300c59a2f5bc02476//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3e/3e97ba7d583055bdd5439dd300c59a2f5bc02476//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-22 21:47 [binutils-gdb] [gdb/symtab] Fix check-psymtab failure for inline function gdb-buildbot
@ 2020-04-22 21:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-22 21:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2790

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        5707e24baa2f557d54e09641d69843111834cb9b

Subject of commit:
        [gdb/symtab] Fix check-psymtab failure for inline function

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/57/5707e24baa2f557d54e09641d69843111834cb9b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/57/5707e24baa2f557d54e09641d69843111834cb9b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/57/5707e24baa2f557d54e09641d69843111834cb9b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-22 18:57 [binutils-gdb] Add support for intel TSXLDTRK instructions$ gdb-buildbot
@ 2020-04-22 18:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-22 18:57 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2789

Author:
        Cui,Lili <lili.cui@intel.com>

Commit tested:
        bb651e8b7fc7904b06031a665138e9e6ae79adf3

Subject of commit:
        Add support for intel TSXLDTRK  instructions$

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/bb/bb651e8b7fc7904b06031a665138e9e6ae79adf3/

*** Diff to previous build ***
==============================================
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 $$
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=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-i686/bb/bb651e8b7fc7904b06031a665138e9e6ae79adf3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bb/bb651e8b7fc7904b06031a665138e9e6ae79adf3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-22 16:13 [binutils-gdb] Implement basic threading support in the NetBSD target gdb-buildbot
@ 2020-04-22 16:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-22 16:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2788

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        05f00e223d56927bfb03e3272a4827276ed67372

Subject of commit:
        Implement basic threading support in the NetBSD target

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/05/05f00e223d56927bfb03e3272a4827276ed67372/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/05/05f00e223d56927bfb03e3272a4827276ed67372//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/05/05f00e223d56927bfb03e3272a4827276ed67372//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-22 13:35 [binutils-gdb] Select variant field when printing variant gdb-buildbot
@ 2020-04-22 13:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-22 13:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2787

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        6ee448cc2d0b9337713ecb6bb2e6305b4f504cbc

Subject of commit:
        Select variant field when printing variant

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6e/6ee448cc2d0b9337713ecb6bb2e6305b4f504cbc/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6e/6ee448cc2d0b9337713ecb6bb2e6305b4f504cbc//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6e/6ee448cc2d0b9337713ecb6bb2e6305b4f504cbc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-22 10:36 [binutils-gdb] Fix build breakage in NetBSD tdep files gdb-buildbot
@ 2020-04-22 10:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-22 10:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2786

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        dea34e8cc336a80546dac21463583a76e3e5d473

Subject of commit:
        Fix build breakage in NetBSD tdep files

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/de/dea34e8cc336a80546dac21463583a76e3e5d473/

*** Diff to previous build ***
==============================================
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 KPASS: gdb.cp/step-and-next-inline.exp: no_header: next step 1
new FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 2
new KPASS: gdb.cp/step-and-next-inline.exp: no_header: next step 3
new KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 4
new KFAIL: gdb.cp/step-and-next-inline.exp: no_header: stepping tests
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/de/dea34e8cc336a80546dac21463583a76e3e5d473//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/de/dea34e8cc336a80546dac21463583a76e3e5d473//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-21 21:05 [binutils-gdb] elf: Remove zero-sized relocation section from section group gdb-buildbot
@ 2020-04-21 21:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-21 21:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2782

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        3349112e380712432d5818154d67ab4660af056f

Subject of commit:
        elf: Remove zero-sized relocation section from section group

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/33/3349112e380712432d5818154d67ab4660af056f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/33/3349112e380712432d5818154d67ab4660af056f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/33/3349112e380712432d5818154d67ab4660af056f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-21 18:26 [binutils-gdb] Fix attributes of typed enums of typedefs gdb-buildbot
@ 2020-04-21 18:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-21 18:26 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2781

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        9e7c9a03eefafae549dafa8bec13232a780804ef

Subject of commit:
        Fix attributes of typed enums of typedefs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9e/9e7c9a03eefafae549dafa8bec13232a780804ef/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
FAIL -> UNRESOLVED: gdb.cp/anon-ns.exp: ptype '
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
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/Fedora-i686/9e/9e7c9a03eefafae549dafa8bec13232a780804ef//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9e/9e7c9a03eefafae549dafa8bec13232a780804ef//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-21 15:38 [binutils-gdb] Fix DWARF disassembly of DW_OP_const_type gdb-buildbot
@ 2020-04-21 15:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-21 15:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2780

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        d9e49b61691f384447242f54c996fe80ef9bf184

Subject of commit:
        Fix DWARF disassembly of DW_OP_const_type

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d9/d9e49b61691f384447242f54c996fe80ef9bf184/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/d9/d9e49b61691f384447242f54c996fe80ef9bf184//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d9/d9e49b61691f384447242f54c996fe80ef9bf184//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-21 12:56 [binutils-gdb] gdb: use bfd_get_section_contents to read section contents in is_linked_with_cygwin_dll gdb-buildbot
@ 2020-04-21 12:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-21 12:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2779

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        e0fc5c3fcbf0d9e425483c20dc14cf9cedeac3f4

Subject of commit:
        gdb: use bfd_get_section_contents to read section contents in is_linked_with_cygwin_dll

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e0fc5c3fcbf0d9e425483c20dc14cf9cedeac3f4/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
UNRESOLVED -> FAIL: gdb.cp/anon-ns.exp: ptype '
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed 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 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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e0fc5c3fcbf0d9e425483c20dc14cf9cedeac3f4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e0fc5c3fcbf0d9e425483c20dc14cf9cedeac3f4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-21 10:09 [binutils-gdb] gdb: replace some calls to internal_error with gdb_assert gdb-buildbot
@ 2020-04-21 10:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-21 10:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2778

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/Fedora-i686/e2/e2ff18a0a54f98c38f8d9b80c36faa7aacacf6d6/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
FAIL -> UNRESOLVED: gdb.cp/anon-ns.exp: ptype '
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/e2/e2ff18a0a54f98c38f8d9b80c36faa7aacacf6d6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-21  7:32 [binutils-gdb] Avoid assertion failure due to complex type change gdb-buildbot
@ 2020-04-21  7:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-21  7:32 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2777

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/Fedora-i686/08/0830d301901d225403eaf6629c20a6c09f3ec8f6/

*** Diff to previous build ***
==============================================
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.threads/gcore-stale-thread.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=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/08/0830d301901d225403eaf6629c20a6c09f3ec8f6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-21  4:59 [binutils-gdb] Micro-optimize partial_die_info::read gdb-buildbot
@ 2020-04-21  4:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-21  4:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2776

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/Fedora-i686/e7/e7da7f8f71572e3ef71a22ad3fae2388a53bd84c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-boolean: cmd 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.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/e7/e7da7f8f71572e3ef71a22ad3fae2388a53bd84c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-21  2:02 [binutils-gdb] gdb: Don't remove duplicate entries from the line table gdb-buildbot
@ 2020-04-21  2:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-21  2:02 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2775

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/Fedora-i686/c9/c90d28ac8903c5781b1a82e487072081383fd7b9/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/c9/c90d28ac8903c5781b1a82e487072081383fd7b9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-20 22:47 [binutils-gdb] gdb/testsuite: Add support for DW_LNS_set_file to DWARF compiler gdb-buildbot
@ 2020-04-20 23:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-20 23:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2774

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        34e9a9fa0a18fc544bc8ec3dc9e02096be1e4335

Subject of commit:
        gdb/testsuite: Add support for DW_LNS_set_file to DWARF compiler

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/34/34e9a9fa0a18fc544bc8ec3dc9e02096be1e4335/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
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-i686/34/34e9a9fa0a18fc544bc8ec3dc9e02096be1e4335//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/34/34e9a9fa0a18fc544bc8ec3dc9e02096be1e4335//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-20 20:48 [binutils-gdb] gdb/testsuite: Add compiler options parameter to function_range helper gdb-buildbot
@ 2020-04-20 20:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-20 20:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2773

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        6a35491162b64ad5402f0558c275a603abc620a4

Subject of commit:
        gdb/testsuite: Add compiler options parameter to function_range helper

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6a/6a35491162b64ad5402f0558c275a603abc620a4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print -"
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6a/6a35491162b64ad5402f0558c275a603abc620a4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6a/6a35491162b64ad5402f0558c275a603abc620a4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-20 17:52 [binutils-gdb] [gdb/testsuite] Don't use O2 for inlining in break-inline-psymtab.exp gdb-buildbot
@ 2020-04-20 17:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-20 17:52 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2772

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        880d97770b63eb722d53b3a0ae2f03deae0c9c72

Subject of commit:
        [gdb/testsuite] Don't use O2 for inlining in break-inline-psymtab.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/88/880d97770b63eb722d53b3a0ae2f03deae0c9c72/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.cp/anon-ns.exp: ptype '
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/88/880d97770b63eb722d53b3a0ae2f03deae0c9c72//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/88/880d97770b63eb722d53b3a0ae2f03deae0c9c72//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-20 13:48 [binutils-gdb] coff-go32-exe: support variable-length stubs gdb-buildbot
@ 2020-04-20 15:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-20 15:29 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2771

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/Fedora-i686/4d/4d095f5b5e57584133f85df42da2123e20834aec/

*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.cp/anon-ns.exp: ptype '
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/4d/4d095f5b5e57584133f85df42da2123e20834aec//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-20 12:37 [binutils-gdb] gdbserver/linux-low: delete 'linux_target_ops' and 'the_low_target' gdb-buildbot
@ 2020-04-20 12:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-20 12:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2770

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/Fedora-i686/0d/0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/0d/0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-20  9:59 [binutils-gdb] gdbserver/linux-low: turn 'get_ipa_tdesc_idx' into a method gdb-buildbot
@ 2020-04-20  9:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-20  9:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2769

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/Fedora-i686/fc/fc5ecdb630406b68ce98c112e1fe618b5839c188/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/fc/fc5ecdb630406b68ce98c112e1fe618b5839c188//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-20  2:05 [binutils-gdb] gdbserver/linux-low: turn 'supports_range_stepping' into a method gdb-buildbot
@ 2020-04-20  2:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-20  2:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2766

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        9cfd87155142f0467cdadb067efd21e165956c20

Subject of commit:
        gdbserver/linux-low: turn 'supports_range_stepping' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9c/9cfd87155142f0467cdadb067efd21e165956c20/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: cmd complete "skip delete "
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: tab complete "skip delete "
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/9c/9cfd87155142f0467cdadb067efd21e165956c20//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9c/9cfd87155142f0467cdadb067efd21e165956c20//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-20  0:00 [binutils-gdb] gdbserver/linux-low: turn 'emit_ops' into a method gdb-buildbot
@ 2020-04-20  0:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-20  0:00 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2765

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        ab64c99982e1e26439dc66b2ea04aa0d4b0458c9

Subject of commit:
        gdbserver/linux-low: turn 'emit_ops' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ab/ab64c99982e1e26439dc66b2ea04aa0d4b0458c9/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
UNRESOLVED -> FAIL: gdb.cp/anon-ns.exp: ptype '
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ab/ab64c99982e1e26439dc66b2ea04aa0d4b0458c9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ab/ab64c99982e1e26439dc66b2ea04aa0d4b0458c9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-19 21:43 [binutils-gdb] gdbserver/linux-low: turn fast tracepoint ops into methods gdb-buildbot
@ 2020-04-19 21:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-19 21:43 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2764

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/Fedora-i686/80/809a0c354b97bbbcacbd99808f0e328b39614a8f/

*** Diff to previous build ***
==============================================
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/80/809a0c354b97bbbcacbd99808f0e328b39614a8f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-19 19:18 [binutils-gdb] gdbserver/linux-low: turn 'get_thread_area' into a method gdb-buildbot
@ 2020-04-19 19:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-19 19:18 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2763

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/Fedora-i686/13/13e567af27e45f7e2f7adc9562d4cfe5a81227f9/

*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.cp/anon-ns.exp: ptype '
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 -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/13/13e567af27e45f7e2f7adc9562d4cfe5a81227f9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-19 16:59 [binutils-gdb] gdbserver/linux-low: turn 'supports_tracepoints' into a method gdb-buildbot
@ 2020-04-19 16:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-19 16:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2762

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        47f70aa7685c0a7fad4ca76964a4199a5b5edd1c

Subject of commit:
        gdbserver/linux-low: turn 'supports_tracepoints' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/47/47f70aa7685c0a7fad4ca76964a4199a5b5edd1c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/47/47f70aa7685c0a7fad4ca76964a4199a5b5edd1c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/47/47f70aa7685c0a7fad4ca76964a4199a5b5edd1c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-19 14:22 [binutils-gdb] gdbserver/linux-low: turn 'process_qsupported' into a method gdb-buildbot
@ 2020-04-19 14:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-19 14:22 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2761

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        a5b5da9258db39b9b15ae2796ab637c73ba20422

Subject of commit:
        gdbserver/linux-low: turn 'process_qsupported' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a5/a5b5da9258db39b9b15ae2796ab637c73ba20422/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
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-i686/a5/a5b5da9258db39b9b15ae2796ab637c73ba20422//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a5/a5b5da9258db39b9b15ae2796ab637c73ba20422//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-19 11:32 [binutils-gdb] gdbserver/linux-low: turn 'prepare_to_resume' into a method gdb-buildbot
@ 2020-04-19 11:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-19 11:32 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2760

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        d7599cc0826fd7052d3ab52f3a4350d6769c03b5

Subject of commit:
        gdbserver/linux-low: turn 'prepare_to_resume' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d7/d7599cc0826fd7052d3ab52f3a4350d6769c03b5/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/d7/d7599cc0826fd7052d3ab52f3a4350d6769c03b5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d7/d7599cc0826fd7052d3ab52f3a4350d6769c03b5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-19  8:57 [binutils-gdb] gdbserver/linux-low: turn process/thread addition/deletion ops into methods gdb-buildbot
@ 2020-04-19  8:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-19  8:57 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2759

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        fd000fb3dfd9c93e332246bf89b700ab9aac7339

Subject of commit:
        gdbserver/linux-low: turn process/thread addition/deletion ops into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/fd/fd000fb3dfd9c93e332246bf89b700ab9aac7339/

*** 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/Fedora-i686/fd/fd000fb3dfd9c93e332246bf89b700ab9aac7339//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fd/fd000fb3dfd9c93e332246bf89b700ab9aac7339//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-19  6:41 [binutils-gdb] gdbserver/linux-low: turn 'siginfo_fixup' into a method gdb-buildbot
@ 2020-04-19  6:41 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-19  6:41 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2758

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        cb63de7ca804e4178a48dc500423bcb89726d893

Subject of commit:
        gdbserver/linux-low: turn 'siginfo_fixup' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/cb/cb63de7ca804e4178a48dc500423bcb89726d893/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/cb/cb63de7ca804e4178a48dc500423bcb89726d893//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/cb/cb63de7ca804e4178a48dc500423bcb89726d893//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-19  4:30 [binutils-gdb] gdbserver/linux-low: turn '{collect, supply}_ptrace_register' into methods gdb-buildbot
@ 2020-04-19  4:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-19  4:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2757

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        b35db73327cf54445a20533305fcf705e88a520b

Subject of commit:
        gdbserver/linux-low: turn '{collect, supply}_ptrace_register' into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b3/b35db73327cf54445a20533305fcf705e88a520b/

*** 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/Fedora-i686/b3/b35db73327cf54445a20533305fcf705e88a520b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b3/b35db73327cf54445a20533305fcf705e88a520b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-19  2:25 [binutils-gdb] gdbserver/linux-low: turn watchpoint ops into methods gdb-buildbot
@ 2020-04-19  2:25 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-19  2:25 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2756

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        ac1bbaca10666fc85572a6deeaa6f1debcd4c129

Subject of commit:
        gdbserver/linux-low: turn watchpoint ops into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ac/ac1bbaca10666fc85572a6deeaa6f1debcd4c129/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
UNRESOLVED -> FAIL: gdb.cp/anon-ns.exp: ptype '
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ac/ac1bbaca10666fc85572a6deeaa6f1debcd4c129//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ac/ac1bbaca10666fc85572a6deeaa6f1debcd4c129//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-18 23:53 [binutils-gdb] gdbserver/linux-low: turn 'insert_point' and 'remove_point' into methods gdb-buildbot
@ 2020-04-18 23:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-18 23:53 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2755

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        9db9aa232ac37e4dca92733678748adc1bfc7ef0

Subject of commit:
        gdbserver/linux-low: turn 'insert_point' and 'remove_point' into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9d/9db9aa232ac37e4dca92733678748adc1bfc7ef0/

*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.cp/anon-ns.exp: ptype '
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9d/9db9aa232ac37e4dca92733678748adc1bfc7ef0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9d/9db9aa232ac37e4dca92733678748adc1bfc7ef0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-18 19:39 [binutils-gdb] gdbserver/linux-low: turn 'supports_z_point_type' into a method gdb-buildbot
@ 2020-04-18 19:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-18 19:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2754

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/Fedora-i686/00/007c9b975dcb9ad50b45d52d2d7a955537beefb7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/00/007c9b975dcb9ad50b45d52d2d7a955537beefb7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-18 16:47 [binutils-gdb] gdbserver/linux-low: turn 'breakpoint_at' into a method gdb-buildbot
@ 2020-04-18 16:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-18 16:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2752

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        d7146cda56c8ee6d1129c0c787c2645c01301fb8

Subject of commit:
        gdbserver/linux-low: turn 'breakpoint_at' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d7/d7146cda56c8ee6d1129c0c787c2645c01301fb8/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d7/d7146cda56c8ee6d1129c0c787c2645c01301fb8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d7/d7146cda56c8ee6d1129c0c787c2645c01301fb8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-18 14:29 [binutils-gdb] gdbserver/linux-low: turn the 'decr_pc_after_break' field into a method gdb-buildbot
@ 2020-04-18 14:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-18 14:29 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2751

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        d4807ea231eea599a474a9ad75a0552ef7217e1f

Subject of commit:
        gdbserver/linux-low: turn the 'decr_pc_after_break' field into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d4/d4807ea231eea599a474a9ad75a0552ef7217e1f/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d4/d4807ea231eea599a474a9ad75a0552ef7217e1f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d4/d4807ea231eea599a474a9ad75a0552ef7217e1f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-18 11:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-18 11:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2750

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/Fedora-i686/75/7582c77c1d2cab3f53b70697529c1644ceeb94a2/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
UNRESOLVED -> FAIL: gdb.cp/anon-ns.exp: ptype '
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/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/Fedora-i686/75/7582c77c1d2cab3f53b70697529c1644ceeb94a2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-18  8:42 [binutils-gdb] gdbserver/linux-low: turn 'sw_breakpoint_from_kind' into a method gdb-buildbot
@ 2020-04-18  8:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-18  8:42 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2749

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/Fedora-i686/3c/3ca4edb6617353defacd3bf3a4ee3d458238419e/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/3c/3ca4edb6617353defacd3bf3a4ee3d458238419e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-18  5:47 [binutils-gdb] gdbserver/linux-low: turn 'breakpoint_kind_from_{pc, current_state}' into methods gdb-buildbot
@ 2020-04-18  5:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-18  5:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2748

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        06250e4e67c0f40a00526afac642b4c345b56750

Subject of commit:
        gdbserver/linux-low: turn 'breakpoint_kind_from_{pc, current_state}' into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/06/06250e4e67c0f40a00526afac642b4c345b56750/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/gnu_vector.exp: print i4a = {2, 4, 8, 16}
FAIL -> UNRESOLVED: gdb.cp/anon-ns.exp: ptype '
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.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/06/06250e4e67c0f40a00526afac642b4c345b56750//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/06/06250e4e67c0f40a00526afac642b4c345b56750//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-18  3:06 [binutils-gdb] gdbserver/linux-low: turn 'get_pc' and 'set_pc' into methods gdb-buildbot
@ 2020-04-18  3:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-18  3:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2747

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        bf9ae9d8c37a4e1dfd192f266c20ea5786fd1bbd

Subject of commit:
        gdbserver/linux-low: turn 'get_pc' and 'set_pc' into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/bf/bf9ae9d8c37a4e1dfd192f266c20ea5786fd1bbd/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/bf/bf9ae9d8c37a4e1dfd192f266c20ea5786fd1bbd//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bf/bf9ae9d8c37a4e1dfd192f266c20ea5786fd1bbd//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-18  0:04 [binutils-gdb] gdbserver/linux-low: turn some more static functions into private methods gdb-buildbot
@ 2020-04-18  0:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-18  0:04 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2746

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        df95181f00dacf335deb4415e3e6061548b917ba

Subject of commit:
        gdbserver/linux-low: turn some more static functions into private methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/df/df95181f00dacf335deb4415e3e6061548b917ba/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/df/df95181f00dacf335deb4415e3e6061548b917ba//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/df/df95181f00dacf335deb4415e3e6061548b917ba//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-17 18:27 [binutils-gdb] gdbserver/linux-low: turn 'cannot_{fetch/store}_register' into methods gdb-buildbot
@ 2020-04-17 18:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-17 18:27 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2744

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        daca57a7de50f97a4e8df917447561617a0298b2

Subject of commit:
        gdbserver/linux-low: turn 'cannot_{fetch/store}_register' into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/da/daca57a7de50f97a4e8df917447561617a0298b2/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/da/daca57a7de50f97a4e8df917447561617a0298b2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/da/daca57a7de50f97a4e8df917447561617a0298b2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-17 15:28 [binutils-gdb] gdbserver/linux-low: turn 'regs_info' into a method gdb-buildbot
@ 2020-04-17 15:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-17 15:28 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2743

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        aa8d21c9bb43baaa35f456a3d371942a26cdce4e

Subject of commit:
        gdbserver/linux-low: turn 'regs_info' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/aa/aa8d21c9bb43baaa35f456a3d371942a26cdce4e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply level 0 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print "
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/aa/aa8d21c9bb43baaa35f456a3d371942a26cdce4e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/aa/aa8d21c9bb43baaa35f456a3d371942a26cdce4e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-17 12:38 [binutils-gdb] gdbserver/linux-low: turn 'arch_setup' into a method gdb-buildbot
@ 2020-04-17 12:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-17 12:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2742

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        797bcff595c5e161b333077299fcaca19bb4fd17

Subject of commit:
        gdbserver/linux-low: turn 'arch_setup' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/79/797bcff595c5e161b333077299fcaca19bb4fd17/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/79/797bcff595c5e161b333077299fcaca19bb4fd17//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/79/797bcff595c5e161b333077299fcaca19bb4fd17//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-17  9:43 [binutils-gdb] gdbserver/linux-low: start turning linux target ops into methods gdb-buildbot
@ 2020-04-17  9:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-17  9:43 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2741

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/Fedora-i686/ef/ef0478f6112ede4da9b70e07aa3124f0d2faf108/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: cmd complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ef/ef0478f6112ede4da9b70e07aa3124f0d2faf108//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-17  7:13 [binutils-gdb] gdbserver/linux-low: turn some static functions into private methods gdb-buildbot
@ 2020-04-17  7:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-17  7:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2740

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/Fedora-i686/d1/d16f3f6c70dfc71bc239cac4f49be34c94c366ad/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.cp/anon-ns.exp: ptype '
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/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/Fedora-i686/d1/d16f3f6c70dfc71bc239cac4f49be34c94c366ad//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-17  4:35 [binutils-gdb] gdbserver: make linux target op 'cannot_store_register' a predicate function gdb-buildbot
@ 2020-04-17  4:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-17  4:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2739

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        a5863204fb1b9c03627edc3bb447c5958ef96458

Subject of commit:
        gdbserver: make linux target op 'cannot_store_register' a predicate function

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a5/a5863204fb1b9c03627edc3bb447c5958ef96458/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
FAIL -> UNRESOLVED: gdb.cp/anon-ns.exp: ptype '
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
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/Fedora-i686/a5/a5863204fb1b9c03627edc3bb447c5958ef96458//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a5/a5863204fb1b9c03627edc3bb447c5958ef96458//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-17  2:10 [binutils-gdb] Add support for intel SERIALIZE instruction gdb-buildbot
@ 2020-04-17  2:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-17  2:10 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2738

Author:
        LiliCui <lili.cui@intel.com>

Commit tested:
        4b27d27c07a9514d5f6d0876f659a32378fb4801

Subject of commit:
        Add support for intel SERIALIZE instruction

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4b/4b27d27c07a9514d5f6d0876f659a32378fb4801/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to 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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
UNRESOLVED -> FAIL: gdb.cp/anon-ns.exp: ptype '
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4b/4b27d27c07a9514d5f6d0876f659a32378fb4801//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4b/4b27d27c07a9514d5f6d0876f659a32378fb4801//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-16 23:19 [binutils-gdb] [gdb/testsuite] Fix silent timeout in gdb.multi/multi-target.exp gdb-buildbot
@ 2020-04-16 23:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-16 23:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2737

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        f32682eacae76881752bae2a72c485b98badb2c3

Subject of commit:
        [gdb/testsuite] Fix silent timeout in gdb.multi/multi-target.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f3/f32682eacae76881752bae2a72c485b98badb2c3/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
FAIL -> UNRESOLVED: gdb.cp/anon-ns.exp: ptype '
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.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f3/f32682eacae76881752bae2a72c485b98badb2c3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f3/f32682eacae76881752bae2a72c485b98badb2c3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-16 20:26 [binutils-gdb] [gdb/ada] Fix -readnow FAILs gdb-buildbot
@ 2020-04-16 20:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-16 20:26 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2736

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        1aa98955b19676497f89112a0962f24f359ce761

Subject of commit:
        [gdb/ada] Fix -readnow FAILs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/1a/1aa98955b19676497f89112a0962f24f359ce761/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
UNRESOLVED -> FAIL: gdb.cp/anon-ns.exp: ptype '
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1a/1aa98955b19676497f89112a0962f24f359ce761//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1a/1aa98955b19676497f89112a0962f24f359ce761//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-16 17:34 [binutils-gdb] [gdb] Use partial symbol table to find language for main gdb-buildbot
@ 2020-04-16 17:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-16 17:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2735

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        d3214198119c1a2f9a6a2b8fcc56d8c324e1a245

Subject of commit:
        [gdb] Use partial symbol table to find language for main

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d3/d3214198119c1a2f9a6a2b8fcc56d8c324e1a245/

*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.cp/anon-ns.exp: ptype '
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::"
new FAIL: gdb.gdb/complaints.exp: breakpoint in captured_command_loop
new FAIL: gdb.gdb/complaints.exp: run until breakpoint at captured_command_loop
new FAIL: gdb.gdb/python-interrupts.exp: breakpoint in captured_command_loop
new FAIL: gdb.gdb/python-interrupts.exp: run until breakpoint at captured_command_loop
new FAIL: gdb.gdb/python-selftest.exp: breakpoint in captured_command_loop
new FAIL: gdb.gdb/python-selftest.exp: run until breakpoint at captured_command_loop
new FAIL: gdb.gdb/selftest.exp: breakpoint in captured_main
new FAIL: gdb.gdb/selftest.exp: run until breakpoint at captured_main
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
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/Fedora-i686/d3/d3214198119c1a2f9a6a2b8fcc56d8c324e1a245//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d3/d3214198119c1a2f9a6a2b8fcc56d8c324e1a245//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-16 14:39 [binutils-gdb] [gdb/testsuite] Accept new complex print style in mixed-lang-stack.exp gdb-buildbot
@ 2020-04-16 14:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-16 14:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2734

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        cc77ed241bab61c0e86f4620e68be4481063a450

Subject of commit:
        [gdb/testsuite] Accept new complex print style in mixed-lang-stack.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/cc/cc77ed241bab61c0e86f4620e68be4481063a450/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/cc/cc77ed241bab61c0e86f4620e68be4481063a450//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/cc/cc77ed241bab61c0e86f4620e68be4481063a450//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-16 11:49 [binutils-gdb] gdb: fix style issues in is_linked_with_cygwin_dll gdb-buildbot
@ 2020-04-16 11:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-16 11:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2733

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/Fedora-i686/28/2836752f8ff55ea1fc7f6b1e7f8ff778775646f8/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/28/2836752f8ff55ea1fc7f6b1e7f8ff778775646f8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-16  8:49 [binutils-gdb] Fix an undefined behavior in record_line gdb-buildbot
@ 2020-04-16  8:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-16  8:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2732

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/Fedora-i686/64/64dc2d4bd24ff7119c913fff91184414f09b8042/

*** Diff to previous build ***
==============================================
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/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/Fedora-i686/64/64dc2d4bd24ff7119c913fff91184414f09b8042//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-16  6:02 [binutils-gdb] Fix the resizing condition of the line table gdb-buildbot
@ 2020-04-16  6:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-16  6:02 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2731

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/Fedora-i686/bb/bbe3dc410bd5c29955ef3409f9fee9e7c73b2c49/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1
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-i686/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/Fedora-i686/bb/bbe3dc410bd5c29955ef3409f9fee9e7c73b2c49//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-16  3:15 [binutils-gdb] x86: Only allow S + A relocations against absolute symbol gdb-buildbot
@ 2020-04-16  3:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-16  3:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2730

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        382aae06322799a25ea52fe61b243cbca4db8d66

Subject of commit:
        x86: Only allow S + A relocations against absolute symbol

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/38/382aae06322799a25ea52fe61b243cbca4db8d66/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print -"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/38/382aae06322799a25ea52fe61b243cbca4db8d66//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/38/382aae06322799a25ea52fe61b243cbca4db8d66//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-16  0:15 [binutils-gdb] Fix value_literal_complex comment gdb-buildbot
@ 2020-04-16  0:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-16  0:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2729

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/Fedora-i686/6b/6b4a335bf7b7996e904e895b3fdc35443c40cfca/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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/Fedora-i686/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/Fedora-i686/6b/6b4a335bf7b7996e904e895b3fdc35443c40cfca//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-15 21:30 [binutils-gdb] Add _Complex type support to C parser gdb-buildbot
@ 2020-04-15 21:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-15 21:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2728

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/Fedora-i686/36/3638a098a21ce706ef2b17185f3b165e4f9a5c54/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/36/3638a098a21ce706ef2b17185f3b165e4f9a5c54//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-15 18:33 [binutils-gdb] Implement complex arithmetic gdb-buildbot
@ 2020-04-15 18:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-15 18:33 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2727

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/Fedora-i686/c3/c34e87146628a14cf662dca46aac893d06502f52/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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: tab complete "b -qualified -source cpls.cc -function ns_overload2_test::"
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/c3/c34e87146628a14cf662dca46aac893d06502f52//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-15 15:38 [binutils-gdb] Change the C parser to allow complex constants gdb-buildbot
@ 2020-04-15 15:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-15 15:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2726

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        fa649bb7d3c8fd97c1d8f01a3023094468f66ca4

Subject of commit:
        Change the C parser to allow complex constants

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/fa/fa649bb7d3c8fd97c1d8f01a3023094468f66ca4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fa/fa649bb7d3c8fd97c1d8f01a3023094468f66ca4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fa/fa649bb7d3c8fd97c1d8f01a3023094468f66ca4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-15 12:44 [binutils-gdb] Change how complex types are printed in C gdb-buildbot
@ 2020-04-15 12:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-15 12:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2725

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        981c08ce72f5b8729381ddebf2f3fe5f1e000638

Subject of commit:
        Change how complex types are printed in C

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/98/981c08ce72f5b8729381ddebf2f3fe5f1e000638/

*** 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 -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/98/981c08ce72f5b8729381ddebf2f3fe5f1e000638//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/98/981c08ce72f5b8729381ddebf2f3fe5f1e000638//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-15  9:52 [binutils-gdb] Add accessors for members of complex numbers gdb-buildbot
@ 2020-04-15  9:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-15  9:52 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2724

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4c99290df04ba757b74a21ac5a6d16fe300e49ed

Subject of commit:
        Add accessors for members of complex numbers

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4c/4c99290df04ba757b74a21ac5a6d16fe300e49ed/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.cp/anon-ns.exp: ptype '
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-i686/4c/4c99290df04ba757b74a21ac5a6d16fe300e49ed//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4c/4c99290df04ba757b74a21ac5a6d16fe300e49ed//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-15  7:09 [binutils-gdb] Change how complex types are created gdb-buildbot
@ 2020-04-15  7:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-15  7:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2723

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5b930b4538f70a9f09280e36164840e48fb1c042

Subject of commit:
        Change how complex types are created

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5b/5b930b4538f70a9f09280e36164840e48fb1c042/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=AIX: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Cygwin: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DICOS: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=DJGPP: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Darwin: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=FreeBSD: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Hurd: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=GNU/Linux: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=LynxOS178: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=NetBSD: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=OpenBSD: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=PikeOS: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=QNX-Neutrino: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SDE: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=SVR4: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Solaris: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Symbian: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=Windows: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=WindowsCE: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=auto: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=default: arch=armv4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=A7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC601: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC601: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC601: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC700: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC700: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC700: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC700: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC700: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARC700: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARCv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARCv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARCv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARCv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARCv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=ARCv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=EM: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=EM: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=EM: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=EM: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=EM: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=EM: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=HS: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=HS: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=HS: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=HS: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=HS: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=HS: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430X: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430X: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430X: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430X: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430X: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430X: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x11x1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x11x1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x11x1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x11x1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x11x1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x11x1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x13: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x13: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x13: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x13: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x13: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x13: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x15: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x15: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x15: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x15: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x15: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x15: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x20: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x20: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x20: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x20: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x20: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x20: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x21: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x21: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x21: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x21: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x21: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x21: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x22: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x22: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x22: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x22: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x22: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x22: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x23: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x23: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x23: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x23: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x23: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x23: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x24: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x24: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x24: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x24: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x24: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x24: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x26: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x26: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x26: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x26: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x26: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x26: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x33: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x33: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x33: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x41: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x41: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x41: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x41: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x41: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x41: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x42: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x42: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x42: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x42: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x42: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x42: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x43: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x43: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x43: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x43: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x43: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x43: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x44: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x44: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x44: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x44: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x44: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x44: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x46: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x46: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x46: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x46: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x46: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x46: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x47: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x47: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x47: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x47: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x47: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x47: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x54: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x54: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x54: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x54: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x54: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MSP430x54: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MicroBlaze: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MicroBlaze: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MicroBlaze: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MicroBlaze: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MicroBlaze: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=MicroBlaze: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33-2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33-2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33-2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33-2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33-2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33-2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=am33: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=auto: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=AAPCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=APCS: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=fpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=softfpa: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=softvfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm: endian=little: arm_abi=auto: arm_fpu=vfp: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm_any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm_any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm_any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm_any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm_any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=arm_any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv2a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv3m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-0.exp: tests: osabi=none: arch=armv4: endian=little: ptype, long double
PASS -> FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv4t: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv4t: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv4t: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5t: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5t: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5t: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5te: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5te: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5te: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5tej: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5tej: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv5tej: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6kz: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6kz: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6kz: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6s-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6s-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6s-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6t2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6t2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv6t2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7e-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7e-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv7e-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.base: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.base: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.base: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.main: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.main: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-m.main: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8-r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8.1-m.main: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8.1-m.main: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=armv8.1-m.main: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:101: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:101: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:101: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:102: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:102: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:102: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:103: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:103: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:103: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:104: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:104: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:104: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:105: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:105: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:105: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:106: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:106: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:106: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:107: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:107: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:107: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:25: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:25: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:25: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:31: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:31: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:31: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:35: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:35: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:35: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:4: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:4: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:4: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:51: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:51: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:51: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=avr:6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=bfin: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=bfin: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=bfin: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=c5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=c5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=c5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=AIX: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Cygwin: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DICOS: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=DJGPP: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Darwin: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=FreeBSD: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Hurd: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=GNU/Linux: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=LynxOS178: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=NetBSD: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=OpenBSD: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=PikeOS: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=QNX-Neutrino: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SDE: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=SVR4: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Solaris: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Symbian: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=Windows: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=WindowsCE: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=auto: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=default: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv4t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv4t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv4t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv4t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv4t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv4t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5t: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5t: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5t: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5t: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5t: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5t: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5te: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5te: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5te: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5te: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5te: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5te: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5tej: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5tej: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5tej: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5tej: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5tej: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv5tej: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6kz: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6kz: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6kz: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6kz: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6kz: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6kz: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6s-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6s-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6s-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6s-m: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6s-m: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6s-m: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6t2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6t2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6t2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6t2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6t2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv6t2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7e-m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7e-m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7e-m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7e-m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7e-m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv7e-m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.base: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.base: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.base: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.base: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.base: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.base: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8-r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8.1-m.main: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8.1-m.main: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8.1-m.main: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8.1-m.main: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8.1-m.main: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=armv8.1-m.main: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:101: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:101: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:101: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:101: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:101: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:101: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:102: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:102: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:102: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:102: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:102: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:102: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:103: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:103: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:103: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:103: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:103: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:103: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:104: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:104: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:104: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:104: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:104: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:104: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:105: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:105: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:105: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:105: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:105: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:105: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:106: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:106: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:106: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:106: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:106: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:106: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:107: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:107: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:107: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:107: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:107: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:107: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:25: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:25: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:25: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:25: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:25: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:25: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:31: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:31: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:31: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:31: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:31: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:31: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:51: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:51: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:51: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:51: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:51: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:51: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=avr:6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=bfin: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=bfin: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=bfin: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=bfin: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=bfin: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=bfin: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=c5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=c5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=c5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=c5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=c5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=c5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris:common_v10_v32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris:common_v10_v32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris:common_v10_v32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris:common_v10_v32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris:common_v10_v32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=cris:common_v10_v32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=crisv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=crisv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=crisv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-1.exp: tests: osabi=none: arch=crisv32: endian=big: ptype, long double
PASS -> FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:any: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:any: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:any: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck510: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck510: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck510: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck610: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck610: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck610: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck801: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck801: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck801: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck802: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck802: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck802: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck803: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck803: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck803: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck807: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck807: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck807: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck810: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck810: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=csky:ck810: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ep9312: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ep9312: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ep9312: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr450: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr450: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr450: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr550: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr550: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=fr550: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=frv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=frv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=frv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=ft32b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300hn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300hn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300hn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300s: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300s: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300s: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sxn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sxn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=h8300sxn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=hppa1.0: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=hppa1.0: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=hppa1.0: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x64-32:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i386:x86-64:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i8086: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i8086: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=i8086: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq10: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq10: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq10: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq2000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq2000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iq2000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=iwmmxt: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=lm32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=lm32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=lm32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=m16c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=m16c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=AIX: arch=m16c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck510: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck510: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck510: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck610: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck610: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck610: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck801: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck801: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck801: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck802: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck802: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck802: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck803: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck803: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck803: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck807: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck807: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck807: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck810: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck810: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=csky:ck810: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ep9312: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ep9312: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ep9312: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr450: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr450: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr450: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr550: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr550: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=fr550: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=frv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=frv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=frv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=ft32b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300h: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300h: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300h: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300hn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300hn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300hn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300s: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300s: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300s: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sxn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sxn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=h8300sxn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=hppa1.0: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=hppa1.0: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=hppa1.0: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x64-32:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i386:x86-64:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i8086: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i8086: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=i8086: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq10: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq10: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq10: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq2000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq2000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iq2000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=iwmmxt: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=lm32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=lm32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=lm32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=m16c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=m16c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Cygwin: arch=m16c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:any: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:any: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:any: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck510: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck510: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck510: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck610: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck610: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck610: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck801: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck801: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck801: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck802: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck802: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck802: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck803: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck803: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck803: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck807: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck807: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck807: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck810: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck810: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=csky:ck810: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ep9312: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ep9312: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ep9312: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr450: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr450: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr450: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr550: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr550: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=fr550: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=frv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=frv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=frv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=ft32b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300hn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300hn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300hn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300s: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300s: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300s: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sxn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sxn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=h8300sxn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=hppa1.0: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=hppa1.0: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=hppa1.0: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x64-32:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i386:x86-64:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i8086: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i8086: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=i8086: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq10: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq10: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq10: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq2000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq2000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iq2000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=iwmmxt: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=lm32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=lm32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=lm32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=m16c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=m16c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DICOS: arch=m16c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck510: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck510: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck510: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck610: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck610: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck610: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck801: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck801: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck801: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck802: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck802: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck802: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck803: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck803: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck803: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck807: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck807: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck807: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck810: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck810: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=csky:ck810: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ep9312: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ep9312: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ep9312: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr450: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr450: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr450: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr550: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr550: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=fr550: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=frv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=frv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=frv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=ft32b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300h: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300h: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300h: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300hn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300hn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300hn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300s: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300s: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300s: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sxn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sxn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=h8300sxn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=hppa1.0: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=hppa1.0: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=hppa1.0: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x64-32:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i386:x86-64:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i8086: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i8086: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=i8086: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq10: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq10: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq10: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq2000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq2000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iq2000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=iwmmxt: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=lm32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=lm32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=lm32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=m16c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=m16c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=DJGPP: arch=m16c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:any: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:any: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:any: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck510: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck510: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck510: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck610: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck610: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck610: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck801: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck801: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck801: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck802: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck802: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck802: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck803: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck803: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck803: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck807: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck807: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck807: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck810: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck810: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=csky:ck810: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ep9312: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ep9312: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ep9312: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr450: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr450: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr450: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr550: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr550: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=fr550: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=frv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=frv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=frv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=ft32b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300hn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300hn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300hn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300s: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300s: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300s: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sxn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sxn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=h8300sxn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=hppa1.0: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=hppa1.0: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=hppa1.0: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x64-32:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i386:x86-64:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i8086: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i8086: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=i8086: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq10: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq10: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq10: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq2000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq2000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iq2000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=iwmmxt: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=lm32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=lm32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=lm32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=m16c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=m16c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Darwin: arch=m16c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck510: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck510: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck510: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck610: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck610: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck610: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck801: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck801: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck801: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck802: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck802: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck802: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck803: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck803: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck803: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck807: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck807: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck807: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck810: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck810: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=csky:ck810: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ep9312: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ep9312: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ep9312: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr450: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr450: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr450: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr550: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr550: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=fr550: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=frv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=frv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=frv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=ft32b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300h: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300h: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300h: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300hn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300hn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300hn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300s: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300s: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300s: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sxn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sxn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=h8300sxn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=hppa1.0: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=hppa1.0: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=hppa1.0: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x64-32:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i386:x86-64:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i8086: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i8086: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=i8086: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq10: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq10: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq10: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq2000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq2000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iq2000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=iwmmxt: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=lm32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=lm32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=lm32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=m16c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=m16c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=FreeBSD: arch=m16c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:any: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:any: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:any: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck510: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck510: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck510: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck610: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck610: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck610: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck801: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck801: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck801: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck802: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck802: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck802: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck803: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck803: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck803: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck807: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck807: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck807: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck810: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck810: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=csky:ck810: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ep9312: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ep9312: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ep9312: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr450: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr450: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr450: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr550: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr550: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=fr550: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=frv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=frv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=frv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=ft32b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300hn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300hn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300hn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300s: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300s: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300s: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sxn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sxn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=h8300sxn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=hppa1.0: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=hppa1.0: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=hppa1.0: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x64-32:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i386:x86-64:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i8086: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i8086: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=i8086: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq10: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq10: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq10: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq2000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq2000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iq2000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=iwmmxt: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=lm32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=lm32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=lm32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=m16c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=m16c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Hurd: arch=m16c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck510: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck510: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck510: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck610: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck610: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck610: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck801: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck801: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck801: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck802: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck802: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck802: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck803: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck803: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck803: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck807: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck807: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck807: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck810: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck810: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=csky:ck810: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ep9312: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ep9312: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ep9312: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr450: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr450: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr450: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr550: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr550: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=fr550: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=frv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=frv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=frv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=ft32b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300h: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300h: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300h: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300hn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300hn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300hn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300s: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300s: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300s: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sxn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sxn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=h8300sxn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=hppa1.0: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=hppa1.0: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=hppa1.0: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x64-32:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i386:x86-64:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i8086: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i8086: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=i8086: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq10: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq10: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq10: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq2000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq2000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iq2000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=iwmmxt: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=lm32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=lm32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=lm32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=m16c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=m16c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=GNU/Linux: arch=m16c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:any: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:any: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:any: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck510: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck510: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck510: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck610: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck610: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck610: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck801: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck801: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck801: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck802: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck802: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck802: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck803: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck803: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck803: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck807: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck807: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck807: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck810: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck810: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=csky:ck810: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ep9312: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ep9312: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ep9312: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr450: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr450: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr450: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr550: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr550: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=fr550: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=frv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=frv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=frv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=ft32b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300hn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300hn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300hn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300s: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300s: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300s: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sxn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sxn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=h8300sxn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=hppa1.0: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=hppa1.0: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=hppa1.0: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x64-32:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i386:x86-64:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i8086: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i8086: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=i8086: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq10: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq10: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq10: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq2000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq2000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iq2000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=iwmmxt: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=lm32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=lm32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=lm32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=m16c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=m16c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=LynxOS178: arch=m16c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck510: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck510: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck510: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck610: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck610: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck610: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck801: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck801: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck801: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck802: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck802: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck802: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck803: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck803: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck803: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck807: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck807: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck807: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck810: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck810: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=csky:ck810: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ep9312: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ep9312: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ep9312: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr450: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr450: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr450: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr550: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr550: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=fr550: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=frv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=frv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=frv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=ft32b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300h: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300h: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300h: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300hn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300hn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300hn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300s: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300s: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300s: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sxn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sxn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=h8300sxn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=hppa1.0: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=hppa1.0: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=hppa1.0: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x64-32:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i386:x86-64:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i8086: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i8086: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=i8086: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq10: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq10: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq10: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq2000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq2000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iq2000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=iwmmxt: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=lm32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=lm32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=lm32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=m16c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=m16c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=NetBSD: arch=m16c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:any: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:any: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:any: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck510: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck510: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck510: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck610: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck610: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck610: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck801: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck801: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck801: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck802: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck802: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck802: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck803: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck803: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck803: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck807: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck807: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck807: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck810: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck810: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=csky:ck810: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ep9312: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ep9312: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ep9312: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr450: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr450: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr450: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr550: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr550: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=fr550: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=frv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=frv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=frv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=ft32b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300hn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300hn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300hn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300s: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300s: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300s: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sxn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sxn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=h8300sxn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=hppa1.0: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=hppa1.0: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=hppa1.0: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x64-32:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i386:x86-64:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i8086: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i8086: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=i8086: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq10: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq10: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq10: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq2000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq2000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iq2000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=iwmmxt: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=lm32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=lm32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=lm32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=m16c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=m16c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=OpenBSD: arch=m16c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck510: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck510: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck510: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck610: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck610: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck610: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck801: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck801: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck801: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck802: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck802: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck802: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck803: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck803: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck803: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck807: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck807: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck807: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck810: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck810: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=csky:ck810: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ep9312: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ep9312: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ep9312: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr450: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr450: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr450: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr550: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr550: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=fr550: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=frv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=frv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=frv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=ft32b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300h: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300h: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300h: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300hn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300hn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300hn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300s: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300s: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300s: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sxn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sxn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=h8300sxn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=hppa1.0: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=hppa1.0: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=hppa1.0: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x64-32:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i386:x86-64:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i8086: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i8086: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=i8086: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq10: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq10: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq10: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq2000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq2000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iq2000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=iwmmxt: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=lm32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=lm32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=lm32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=m16c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=m16c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=PikeOS: arch=m16c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:any: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:any: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:any: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck510: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck510: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck510: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck610: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck610: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck610: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck801: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck801: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck801: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck802: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck802: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck802: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck803: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck803: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck803: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck807: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck807: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck807: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck810: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck810: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=csky:ck810: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ep9312: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ep9312: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ep9312: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr450: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr450: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr450: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr550: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr550: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=fr550: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=frv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=frv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=frv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=ft32b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300hn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300hn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300hn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300s: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300s: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300s: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sxn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sxn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=h8300sxn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=hppa1.0: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=hppa1.0: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=hppa1.0: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x64-32:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i386:x86-64:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i8086: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i8086: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=i8086: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq10: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq10: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq10: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq2000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq2000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iq2000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=iwmmxt: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=lm32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=lm32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=lm32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=m16c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=m16c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=QNX-Neutrino: arch=m16c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck510: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck510: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck510: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck610: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck610: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck610: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck801: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck801: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck801: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck802: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck802: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck802: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck803: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck803: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck803: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck807: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck807: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck807: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck810: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck810: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=csky:ck810: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ep9312: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ep9312: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ep9312: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr450: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr450: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr450: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr550: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr550: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=fr550: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=frv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=frv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=frv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=ft32b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300h: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300h: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300h: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300hn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300hn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300hn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300s: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300s: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300s: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sxn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sxn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=h8300sxn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=hppa1.0: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=hppa1.0: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=hppa1.0: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x64-32:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i386:x86-64:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i8086: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i8086: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=i8086: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq10: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq10: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq10: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq2000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq2000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iq2000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=iwmmxt: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=lm32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=lm32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=lm32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=m16c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=m16c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SDE: arch=m16c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:any: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:any: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:any: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck510: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck510: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck510: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck610: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck610: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck610: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck801: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck801: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck801: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck802: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck802: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck802: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck803: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck803: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck803: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck807: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck807: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck807: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck810: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck810: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=csky:ck810: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ep9312: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ep9312: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ep9312: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr450: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr450: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr450: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr550: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr550: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=fr550: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=frv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=frv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=frv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=ft32b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300hn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300hn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300hn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300s: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300s: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300s: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sxn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sxn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=h8300sxn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=hppa1.0: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=hppa1.0: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=hppa1.0: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x64-32:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i386:x86-64:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i8086: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i8086: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=i8086: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq10: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq10: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq10: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq2000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq2000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iq2000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=iwmmxt: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=lm32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=lm32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=lm32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=m16c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=m16c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=SVR4: arch=m16c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck510: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck510: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck510: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck610: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck610: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck610: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck801: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck801: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck801: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck802: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck802: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck802: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck803: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck803: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck803: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck807: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck807: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck807: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck810: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck810: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=csky:ck810: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ep9312: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ep9312: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ep9312: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr450: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr450: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr450: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr550: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr550: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=fr550: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=frv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=frv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=frv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=ft32b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300h: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300h: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300h: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300hn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300hn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300hn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300s: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300s: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300s: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sxn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sxn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=h8300sxn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=hppa1.0: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=hppa1.0: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=hppa1.0: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x64-32:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i386:x86-64:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i8086: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i8086: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=i8086: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq10: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq10: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq10: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq2000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq2000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iq2000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=iwmmxt: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=lm32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=lm32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=lm32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=m16c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=m16c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Solaris: arch=m16c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:any: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:any: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:any: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck510: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck510: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck510: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck610: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck610: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck610: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck801: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck801: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck801: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck802: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck802: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck802: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck803: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck803: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck803: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck807: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck807: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck807: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck810: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck810: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=csky:ck810: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ep9312: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ep9312: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ep9312: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr450: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr450: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr450: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr550: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr550: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=fr550: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=frv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=frv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=frv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=ft32b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300hn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300hn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300hn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300s: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300s: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300s: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sxn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sxn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=h8300sxn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=hppa1.0: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=hppa1.0: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=hppa1.0: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x64-32:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i386:x86-64:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i8086: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i8086: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=i8086: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq10: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq10: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq10: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq2000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq2000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iq2000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=iwmmxt: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=lm32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=lm32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=lm32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=m16c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=m16c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Symbian: arch=m16c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck510: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck510: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck510: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck610: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck610: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck610: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck801: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck801: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck801: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck802: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck802: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck802: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck803: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck803: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck803: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck807: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck807: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck807: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck810: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck810: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=csky:ck810: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ep9312: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ep9312: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ep9312: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr450: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr450: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr450: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr550: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr550: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=fr550: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=frv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=frv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=frv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=ft32b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300h: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300h: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300h: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300hn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300hn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300hn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300s: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300s: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300s: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sxn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sxn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=h8300sxn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=hppa1.0: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=hppa1.0: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=hppa1.0: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x64-32:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i386:x86-64:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i8086: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i8086: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=i8086: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq10: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq10: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq10: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq2000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq2000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iq2000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=iwmmxt: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=lm32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=lm32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=lm32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=m16c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=m16c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=Windows: arch=m16c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:any: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:any: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:any: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck510: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck510: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck510: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck610: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck610: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck610: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck801: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck801: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck801: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck802: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck802: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck802: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck803: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck803: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck803: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck807: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck807: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck807: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck810: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck810: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=csky:ck810: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ep9312: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ep9312: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ep9312: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr450: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr450: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr450: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr550: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr550: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=fr550: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=frv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=frv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=frv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=ft32b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300hn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300hn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300hn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300s: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300s: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300s: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sxn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sxn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=h8300sxn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=hppa1.0: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=hppa1.0: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=hppa1.0: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x64-32:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i386:x86-64:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i8086: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i8086: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=i8086: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq10: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq10: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq10: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq2000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq2000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iq2000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=iwmmxt: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=lm32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=lm32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=lm32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=m16c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=m16c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=WindowsCE: arch=m16c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck510: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck510: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck510: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck610: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck610: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck610: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck801: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck801: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck801: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck802: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck802: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck802: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck803: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck803: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck803: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck807: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck807: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck807: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck810: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck810: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=csky:ck810: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ep9312: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ep9312: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ep9312: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr450: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr450: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr450: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr550: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr550: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=fr550: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=frv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=frv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=frv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=ft32b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300h: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300h: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300h: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300hn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300hn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300hn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300s: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300s: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300s: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sxn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sxn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=h8300sxn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=hppa1.0: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=hppa1.0: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=hppa1.0: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x64-32:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i386:x86-64:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i8086: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i8086: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=i8086: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq10: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq10: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq10: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq2000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq2000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iq2000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=iwmmxt: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=lm32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=lm32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=lm32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=m16c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=m16c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=auto: arch=m16c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:any: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:any: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:any: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck510: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck510: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck510: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck610: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck610: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck610: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck801: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck801: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck801: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck802: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck802: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck802: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck803: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck803: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck803: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck807: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck807: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck807: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck810: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck810: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky:ck810: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ep9312: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ep9312: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ep9312: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr450: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr450: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr450: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr550: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr550: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=fr550: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=frv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=frv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=frv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=ft32b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300hn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300hn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300hn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300s: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300s: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300s: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sxn: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sxn: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=h8300sxn: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=hppa1.0: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=hppa1.0: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=hppa1.0: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x64-32:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i386:x86-64:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i8086: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i8086: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=i8086: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq10: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq10: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq10: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq2000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq2000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iq2000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=iwmmxt: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=lm32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=lm32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=lm32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=m16c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=m16c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=m16c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:any: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:any: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:any: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:any: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:any: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:any: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck510: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck510: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck510: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck510: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck510: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck510: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck610: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck610: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck610: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck610: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck610: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck610: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck801: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck801: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck801: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck801: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck801: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck801: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck802: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck802: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck802: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck802: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck802: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck802: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck803: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck803: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck803: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck803: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck803: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck803: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck807: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck807: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck807: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck807: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck807: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck807: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck810: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck810: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck810: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck810: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck810: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=csky:ck810: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ep9312: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ep9312: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ep9312: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ep9312: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ep9312: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ep9312: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr450: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr450: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr450: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr450: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr450: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr450: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr550: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr550: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr550: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr550: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr550: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=fr550: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=frv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=frv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=frv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=frv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=frv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=frv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=ft32b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300h: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300h: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300h: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300hn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300hn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300hn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300hn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300hn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300hn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300s: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300s: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300s: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300s: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300s: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300s: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sxn: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sxn: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sxn: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sxn: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sxn: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=h8300sxn: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=hppa1.0: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=hppa1.0: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=hppa1.0: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=hppa1.0: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=hppa1.0: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=hppa1.0: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:intel: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:intel: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:intel: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:nacl: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:nacl: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x64-32:nacl: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:intel: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:intel: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:intel: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:intel: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:intel: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:intel: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:nacl: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:nacl: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:nacl: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:nacl: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:nacl: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i386:x86-64:nacl: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i8086: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i8086: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i8086: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i8086: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i8086: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=i8086: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq10: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq10: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq10: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq10: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq10: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq10: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq2000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq2000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq2000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq2000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq2000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iq2000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=iwmmxt: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=lm32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=lm32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=lm32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=lm32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=lm32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=lm32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=m16c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=m16c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=m16c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=m16c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=m16c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=none: arch=m16c: endian=little: ptype, long double
PASS -> FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m32rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc11: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc11: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc11: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12:HCS12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12:HCS12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68hc12:HCS12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5200: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5200: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5200: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5206e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5206e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5206e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:521x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:521x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:521x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5249: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5249: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5249: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:528x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:528x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:528x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5307: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5307: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5307: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5407: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5407: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:5407: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:547x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:547x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:547x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:548x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:548x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:548x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68008: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68008: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68008: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68020: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68020: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68020: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68030: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68030: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68030: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68040: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68040: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68040: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68060: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68060: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:68060: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cfv4e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cfv4e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cfv4e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cpu32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cpu32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:cpu32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:fido: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:fido: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:fido: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-a:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-aplus:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:float:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=AIX: arch=m68k:isa-b:nousp:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m32rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc11: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc11: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc11: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12:HCS12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12:HCS12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68hc12:HCS12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5200: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5200: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5200: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5206e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5206e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5206e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:521x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:521x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:521x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5249: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5249: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5249: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:528x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:528x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:528x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5307: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5307: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5307: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5407: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5407: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:5407: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:547x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:547x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:547x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:548x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:548x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:548x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68008: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68008: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68008: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68020: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68020: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68020: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68030: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68030: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68030: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68040: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68040: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68040: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68060: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68060: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:68060: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cfv4e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cfv4e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cfv4e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cpu32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cpu32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:cpu32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:fido: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:fido: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:fido: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-a:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-aplus:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:float:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Cygwin: arch=m68k:isa-b:nousp:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m32rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc11: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc11: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc11: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12:HCS12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12:HCS12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68hc12:HCS12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5200: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5200: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5200: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5206e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5206e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5206e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:521x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:521x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:521x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5249: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5249: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5249: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:528x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:528x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:528x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5307: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5307: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5307: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5407: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5407: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:5407: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:547x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:547x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:547x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:548x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:548x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:548x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68008: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68008: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68008: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68020: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68020: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68020: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68030: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68030: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68030: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68040: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68040: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68040: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68060: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68060: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:68060: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cfv4e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cfv4e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cfv4e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cpu32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cpu32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:cpu32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:fido: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:fido: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:fido: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-a:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-aplus:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:float:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DICOS: arch=m68k:isa-b:nousp:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m32rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc11: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc11: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc11: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12:HCS12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12:HCS12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68hc12:HCS12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5200: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5200: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5200: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5206e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5206e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5206e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:521x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:521x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:521x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5249: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5249: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5249: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:528x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:528x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:528x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5307: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5307: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5307: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5407: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5407: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:5407: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:547x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:547x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:547x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:548x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:548x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:548x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68008: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68008: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68008: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68020: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68020: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68020: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68030: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68030: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68030: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68040: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68040: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68040: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68060: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68060: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:68060: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cfv4e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cfv4e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cfv4e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cpu32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cpu32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:cpu32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:fido: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:fido: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:fido: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-a:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-aplus:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:float:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=DJGPP: arch=m68k:isa-b:nousp:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m32rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc11: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc11: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc11: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12:HCS12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12:HCS12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68hc12:HCS12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5200: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5200: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5200: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5206e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5206e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5206e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:521x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:521x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:521x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5249: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5249: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5249: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:528x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:528x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:528x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5307: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5307: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5307: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5407: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5407: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:5407: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:547x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:547x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:547x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:548x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:548x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:548x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68008: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68008: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68008: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68020: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68020: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68020: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68030: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68030: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68030: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68040: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68040: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68040: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68060: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68060: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:68060: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cfv4e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cfv4e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cfv4e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cpu32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cpu32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:cpu32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:fido: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:fido: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:fido: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-a:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-aplus:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:float:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Darwin: arch=m68k:isa-b:nousp:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m32rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc11: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc11: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc11: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12:HCS12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12:HCS12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68hc12:HCS12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5200: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5200: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5200: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5206e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5206e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5206e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:521x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:521x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:521x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5249: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5249: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5249: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:528x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:528x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:528x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5307: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5307: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5307: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5407: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5407: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:5407: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:547x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:547x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:547x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:548x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:548x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:548x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68008: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68008: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68008: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68020: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68020: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68020: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68030: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68030: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68030: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68040: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68040: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68040: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68060: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68060: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:68060: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cfv4e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cfv4e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cfv4e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cpu32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cpu32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:cpu32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:fido: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:fido: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:fido: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-a:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-aplus:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:float:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=FreeBSD: arch=m68k:isa-b:nousp:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m32rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc11: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc11: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc11: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12:HCS12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12:HCS12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68hc12:HCS12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5200: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5200: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5200: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5206e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5206e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5206e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:521x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:521x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:521x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5249: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5249: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5249: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:528x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:528x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:528x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5307: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5307: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5307: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5407: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5407: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:5407: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:547x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:547x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:547x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:548x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:548x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:548x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68008: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68008: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68008: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68020: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68020: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68020: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68030: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68030: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68030: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68040: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68040: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68040: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68060: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68060: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:68060: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cfv4e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cfv4e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cfv4e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cpu32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cpu32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:cpu32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:fido: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:fido: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:fido: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-a:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-aplus:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:float:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-b:nousp:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m32rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc11: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc11: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc11: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12:HCS12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12:HCS12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68hc12:HCS12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5200: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5200: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5200: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5206e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5206e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5206e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:521x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:521x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:521x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5249: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5249: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5249: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:528x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:528x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:528x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5307: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5307: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5307: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5407: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5407: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:5407: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:547x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:547x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:547x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:548x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:548x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:548x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68008: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68008: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68008: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68020: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68020: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68020: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68030: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68030: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68030: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68040: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68040: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68040: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68060: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68060: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:68060: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cfv4e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cfv4e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cfv4e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cpu32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cpu32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:cpu32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:fido: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:fido: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:fido: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-a:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-aplus:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:float:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=GNU/Linux: arch=m68k:isa-b:nousp:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m32rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc11: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc11: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc11: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12:HCS12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12:HCS12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68hc12:HCS12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5200: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5200: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5200: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5206e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5206e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5206e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:521x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:521x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:521x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5249: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5249: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5249: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:528x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:528x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:528x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5307: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5307: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5307: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5407: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5407: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:5407: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:547x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:547x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:547x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:548x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:548x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:548x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68008: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68008: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68008: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68020: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68020: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68020: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68030: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68030: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68030: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68040: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68040: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68040: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68060: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68060: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:68060: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cfv4e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cfv4e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cfv4e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cpu32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cpu32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:cpu32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:fido: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:fido: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:fido: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-a:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-aplus:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:float:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=LynxOS178: arch=m68k:isa-b:nousp:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m32rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc11: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc11: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc11: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12:HCS12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12:HCS12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68hc12:HCS12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5200: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5200: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5200: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5206e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5206e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5206e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:521x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:521x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:521x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5249: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5249: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5249: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:528x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:528x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:528x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5307: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5307: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5307: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5407: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5407: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:5407: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:547x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:547x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:547x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:548x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:548x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:548x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68008: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68008: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68008: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68020: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68020: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68020: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68030: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68030: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68030: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68040: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68040: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68040: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68060: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68060: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:68060: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cfv4e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cfv4e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cfv4e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cpu32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cpu32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:cpu32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:fido: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:fido: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:fido: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-a:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-aplus:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:float:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=NetBSD: arch=m68k:isa-b:nousp:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m32rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc11: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc11: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc11: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12:HCS12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12:HCS12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68hc12:HCS12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5200: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5200: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5200: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5206e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5206e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5206e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:521x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:521x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:521x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5249: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5249: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5249: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:528x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:528x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:528x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5307: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5307: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5307: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5407: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5407: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:5407: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:547x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:547x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:547x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:548x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:548x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:548x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68008: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68008: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68008: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68020: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68020: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68020: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68030: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68030: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68030: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68040: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68040: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68040: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68060: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68060: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:68060: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cfv4e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cfv4e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cfv4e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cpu32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cpu32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:cpu32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:fido: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:fido: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:fido: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-a:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-aplus:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:float:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=OpenBSD: arch=m68k:isa-b:nousp:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m32rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc11: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc11: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc11: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12:HCS12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12:HCS12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68hc12:HCS12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5200: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5200: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5200: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5206e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5206e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5206e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:521x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:521x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:521x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5249: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5249: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5249: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:528x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:528x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:528x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5307: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5307: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5307: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5407: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5407: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:5407: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:547x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:547x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:547x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:548x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:548x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:548x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68008: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68008: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68008: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68020: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68020: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68020: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68030: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68030: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68030: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68040: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68040: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68040: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68060: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68060: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:68060: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cfv4e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cfv4e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cfv4e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cpu32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cpu32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:cpu32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:fido: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:fido: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:fido: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-a:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-aplus:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:float:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=PikeOS: arch=m68k:isa-b:nousp:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m32rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc11: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc11: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc11: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12:HCS12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12:HCS12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68hc12:HCS12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5200: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5200: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5200: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5206e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5206e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5206e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:521x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:521x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:521x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5249: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5249: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5249: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:528x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:528x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:528x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5307: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5307: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5307: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5407: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5407: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:5407: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:547x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:547x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:547x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:548x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:548x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:548x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68008: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68008: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68008: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68020: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68020: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68020: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68030: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68030: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68030: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68040: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68040: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68040: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68060: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68060: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:68060: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cfv4e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cfv4e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cfv4e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cpu32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cpu32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:cpu32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:fido: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:fido: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:fido: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-a:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-aplus:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:float:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-b:nousp:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m32rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc11: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc11: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc11: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12:HCS12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12:HCS12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68hc12:HCS12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5200: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5200: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5200: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5206e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5206e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5206e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:521x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:521x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:521x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5249: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5249: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5249: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:528x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:528x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:528x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5307: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5307: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5307: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5407: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5407: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:5407: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:547x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:547x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:547x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:548x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:548x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:548x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68008: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68008: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68008: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68020: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68020: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68020: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68030: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68030: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68030: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68040: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68040: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68040: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68060: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68060: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:68060: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cfv4e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cfv4e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cfv4e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cpu32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cpu32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:cpu32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:fido: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:fido: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:fido: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-a:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-aplus:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:float:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SDE: arch=m68k:isa-b:nousp:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m32rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc11: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc11: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc11: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12:HCS12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12:HCS12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68hc12:HCS12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5200: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5200: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5200: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5206e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5206e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5206e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:521x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:521x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:521x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5249: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5249: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5249: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:528x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:528x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:528x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5307: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5307: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5307: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5407: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5407: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:5407: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:547x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:547x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:547x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:548x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:548x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:548x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68008: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68008: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68008: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68020: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68020: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68020: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68030: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68030: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68030: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68040: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68040: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68040: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68060: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68060: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:68060: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cfv4e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cfv4e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cfv4e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cpu32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cpu32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:cpu32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:fido: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:fido: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:fido: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-a:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-aplus:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:float:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=SVR4: arch=m68k:isa-b:nousp:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m32rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc11: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc11: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc11: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12:HCS12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12:HCS12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68hc12:HCS12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5200: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5200: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5200: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5206e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5206e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5206e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:521x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:521x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:521x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5249: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5249: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5249: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:528x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:528x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:528x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5307: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5307: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5307: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5407: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5407: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:5407: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:547x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:547x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:547x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:548x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:548x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:548x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68008: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68008: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68008: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68020: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68020: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68020: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68030: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68030: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68030: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68040: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68040: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68040: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68060: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68060: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:68060: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cfv4e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cfv4e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cfv4e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cpu32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cpu32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:cpu32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:fido: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:fido: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:fido: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-a:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-aplus:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:float:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Solaris: arch=m68k:isa-b:nousp:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m32rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc11: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc11: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc11: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12:HCS12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12:HCS12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68hc12:HCS12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5200: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5200: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5200: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5206e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5206e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5206e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:521x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:521x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:521x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5249: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5249: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5249: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:528x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:528x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:528x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5307: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5307: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5307: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5407: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5407: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:5407: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:547x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:547x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:547x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:548x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:548x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:548x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68008: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68008: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68008: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68020: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68020: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68020: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68030: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68030: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68030: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68040: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68040: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68040: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68060: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68060: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:68060: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cfv4e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cfv4e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cfv4e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cpu32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cpu32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:cpu32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:fido: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:fido: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:fido: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-a:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-aplus:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:float:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Symbian: arch=m68k:isa-b:nousp:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m32rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc11: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc11: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc11: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12:HCS12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12:HCS12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68hc12:HCS12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5200: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5200: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5200: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5206e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5206e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5206e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:521x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:521x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:521x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5249: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5249: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5249: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:528x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:528x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:528x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5307: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5307: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5307: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5407: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5407: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:5407: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:547x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:547x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:547x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:548x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:548x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:548x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68008: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68008: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68008: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68020: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68020: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68020: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68030: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68030: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68030: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68040: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68040: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68040: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68060: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68060: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:68060: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cfv4e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cfv4e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cfv4e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cpu32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cpu32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:cpu32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:fido: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:fido: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:fido: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-a:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-aplus:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:float:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=Windows: arch=m68k:isa-b:nousp:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m32rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc11: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc11: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc11: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12:HCS12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12:HCS12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68hc12:HCS12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5200: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5200: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5200: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5206e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5206e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5206e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:521x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:521x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:521x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5249: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5249: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5249: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:528x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:528x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:528x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5307: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5307: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5307: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5407: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5407: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:5407: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:547x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:547x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:547x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:548x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:548x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:548x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68008: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68008: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68008: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68020: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68020: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68020: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68030: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68030: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68030: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68040: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68040: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68040: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68060: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68060: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:68060: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cfv4e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cfv4e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cfv4e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cpu32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cpu32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:cpu32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:fido: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:fido: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:fido: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-a:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-aplus:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:float:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=WindowsCE: arch=m68k:isa-b:nousp:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m32rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc11: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc11: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc11: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12:HCS12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12:HCS12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68hc12:HCS12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5200: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5200: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5200: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5206e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5206e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5206e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:521x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:521x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:521x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5249: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5249: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5249: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:528x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:528x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:528x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5307: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5307: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5307: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5407: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5407: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:5407: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:547x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:547x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:547x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:548x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:548x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:548x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68008: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68008: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68008: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68020: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68020: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68020: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68030: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68030: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68030: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68040: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68040: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68040: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68060: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68060: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:68060: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cfv4e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cfv4e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cfv4e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cpu32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cpu32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:cpu32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:fido: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:fido: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:fido: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-a:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-aplus:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:float:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=auto: arch=m68k:isa-b:nousp:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32r: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m32rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc11: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc11: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc11: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12:HCS12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12:HCS12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68hc12:HCS12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5200: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5200: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5200: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5206e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5206e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5206e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:521x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:521x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:521x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5249: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5249: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5249: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:528x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:528x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:528x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5307: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5307: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5307: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5407: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5407: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:5407: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:547x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:547x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:547x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:548x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:548x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:548x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68008: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68008: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68008: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68020: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68020: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68020: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68030: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68030: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68030: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68040: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68040: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68040: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68060: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68060: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:68060: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cfv4e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cfv4e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cfv4e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cpu32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cpu32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:cpu32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:fido: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:fido: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:fido: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-a:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-aplus:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:float:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=default: arch=m68k:isa-b:nousp:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32r: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m32rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc11: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc11: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc11: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc11: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc11: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc11: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12:HCS12: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12:HCS12: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12:HCS12: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12:HCS12: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12:HCS12: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68hc12:HCS12: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5200: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5200: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5200: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5200: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5200: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5200: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5206e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5206e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5206e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5206e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5206e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5206e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:521x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:521x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:521x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:521x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:521x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:521x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5249: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5249: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5249: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5249: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5249: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5249: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:528x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:528x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:528x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:528x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:528x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:528x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5307: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5307: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5307: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5307: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5307: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5307: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5407: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5407: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5407: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5407: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5407: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:5407: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:547x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:547x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:547x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:547x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:547x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:547x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:548x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:548x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:548x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:548x: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:548x: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:548x: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68008: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68008: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68008: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68008: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68008: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68008: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68020: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68020: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68020: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68020: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68020: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68020: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68030: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68030: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68030: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68030: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68030: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68030: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68040: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68040: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68040: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68040: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68040: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68040: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68060: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68060: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68060: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68060: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68060: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:68060: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cfv4e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cfv4e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cfv4e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cfv4e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cfv4e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cfv4e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cpu32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cpu32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cpu32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cpu32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cpu32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:cpu32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:fido: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:fido: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:fido: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:fido: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:fido: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:fido: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-a:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-aplus:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:float:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-3.exp: tests: osabi=none: arch=m68k:isa-b:nousp:mac: endian=little: ptype, long double
PASS -> FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mep: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mep: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mep: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:10000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:10000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:10000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:12000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:12000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:12000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:14000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:14000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:14000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:3900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4111: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4111: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4111: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4120: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4120: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4120: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4650: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4650: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:4650: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:5900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:7000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:7000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:7000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:8000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:8000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:8000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:9000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:9000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:9000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs264e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs264e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs264e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:gs464e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:interaptiv-mr2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:interaptiv-mr2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:interaptiv-mr2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa32r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=AIX: arch=mips:isa64r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mep: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mep: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mep: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:10000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:10000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:10000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:12000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:12000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:12000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:14000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:14000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:14000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:16: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:3900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4111: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4111: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4111: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4120: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4120: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4120: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4600: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4600: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4600: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4650: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4650: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:4650: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:5900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:7000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:7000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:7000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:8000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:8000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:8000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:9000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:9000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:9000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs264e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs264e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs264e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:gs464e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:interaptiv-mr2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:interaptiv-mr2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:interaptiv-mr2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa32r6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Cygwin: arch=mips:isa64r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mep: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mep: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mep: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:10000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:10000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:10000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:12000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:12000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:12000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:14000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:14000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:14000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:3900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4111: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4111: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4111: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4120: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4120: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4120: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4650: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4650: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:4650: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:5900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:7000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:7000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:7000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:8000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:8000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:8000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:9000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:9000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:9000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs264e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs264e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs264e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:gs464e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:interaptiv-mr2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:interaptiv-mr2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:interaptiv-mr2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa32r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DICOS: arch=mips:isa64r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mep: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mep: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mep: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:10000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:10000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:10000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:12000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:12000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:12000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:14000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:14000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:14000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:16: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:3900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4111: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4111: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4111: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4120: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4120: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4120: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4600: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4600: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4600: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4650: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4650: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:4650: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:5900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:7000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:7000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:7000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:8000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:8000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:8000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:9000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:9000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:9000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs264e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs264e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs264e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:gs464e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:interaptiv-mr2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:interaptiv-mr2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:interaptiv-mr2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa32r6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=DJGPP: arch=mips:isa64r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mep: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mep: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mep: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:10000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:10000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:10000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:12000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:12000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:12000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:14000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:14000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:14000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:3900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4111: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4111: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4111: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4120: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4120: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4120: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4650: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4650: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:4650: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:5900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:7000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:7000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:7000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:8000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:8000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:8000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:9000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:9000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:9000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs264e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs264e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs264e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:gs464e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:interaptiv-mr2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:interaptiv-mr2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:interaptiv-mr2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa32r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Darwin: arch=mips:isa64r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mep: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mep: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mep: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:10000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:10000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:10000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:12000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:12000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:12000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:14000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:14000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:14000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:16: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:3900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4111: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4111: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4111: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4120: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4120: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4120: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4600: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4600: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4600: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4650: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4650: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:4650: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:5900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:7000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:7000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:7000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:8000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:8000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:8000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:9000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:9000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:9000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs264e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs264e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs264e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:gs464e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:interaptiv-mr2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:interaptiv-mr2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:interaptiv-mr2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa32r6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=FreeBSD: arch=mips:isa64r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mep: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mep: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mep: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:10000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:10000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:10000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:12000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:12000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:12000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:14000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:14000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:14000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:3900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4111: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4111: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4111: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4120: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4120: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4120: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4650: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4650: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:4650: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:5900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:7000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:7000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:7000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:8000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:8000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:8000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:9000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:9000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:9000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs264e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs264e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs264e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:gs464e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:interaptiv-mr2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:interaptiv-mr2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:interaptiv-mr2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa32r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mep: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mep: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mep: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:10000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:10000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:10000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:12000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:12000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:12000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:14000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:14000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:14000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:16: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:3900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4111: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4111: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4111: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4120: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4120: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4120: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4600: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4600: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4600: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4650: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4650: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:4650: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:5900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:7000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:7000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:7000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:8000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:8000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:8000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:9000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:9000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:9000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs264e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs264e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs264e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:gs464e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:interaptiv-mr2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:interaptiv-mr2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:interaptiv-mr2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa32r6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=GNU/Linux: arch=mips:isa64r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mep: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mep: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mep: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:10000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:10000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:10000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:12000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:12000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:12000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:14000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:14000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:14000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:3900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4111: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4111: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4111: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4120: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4120: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4120: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4650: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4650: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:4650: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:5900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:7000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:7000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:7000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:8000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:8000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:8000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:9000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:9000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:9000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs264e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs264e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs264e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:gs464e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:interaptiv-mr2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:interaptiv-mr2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:interaptiv-mr2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa32r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=LynxOS178: arch=mips:isa64r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mep: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mep: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mep: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:10000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:10000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:10000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:12000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:12000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:12000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:14000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:14000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:14000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:16: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:3900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4111: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4111: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4111: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4120: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4120: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4120: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4600: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4600: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4600: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4650: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4650: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:4650: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:5900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:7000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:7000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:7000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:8000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:8000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:8000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:9000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:9000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:9000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs264e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs264e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs264e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:gs464e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:interaptiv-mr2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:interaptiv-mr2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:interaptiv-mr2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa32r6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=NetBSD: arch=mips:isa64r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mep: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mep: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mep: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:10000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:10000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:10000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:12000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:12000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:12000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:14000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:14000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:14000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:3900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4111: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4111: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4111: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4120: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4120: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4120: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4650: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4650: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:4650: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:5900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:7000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:7000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:7000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:8000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:8000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:8000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:9000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:9000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:9000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs264e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs264e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs264e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:gs464e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:interaptiv-mr2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:interaptiv-mr2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:interaptiv-mr2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa32r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=OpenBSD: arch=mips:isa64r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mep: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mep: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mep: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:10000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:10000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:10000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:12000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:12000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:12000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:14000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:14000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:14000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:16: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:3900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4111: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4111: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4111: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4120: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4120: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4120: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4600: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4600: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4600: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4650: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4650: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:4650: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:5900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:7000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:7000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:7000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:8000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:8000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:8000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:9000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:9000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:9000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs264e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs264e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs264e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:gs464e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:interaptiv-mr2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:interaptiv-mr2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:interaptiv-mr2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa32r6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=PikeOS: arch=mips:isa64r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mep: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mep: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mep: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:10000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:10000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:10000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:12000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:12000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:12000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:14000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:14000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:14000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:3900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4111: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4111: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4111: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4120: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4120: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4120: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4650: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4650: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:4650: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:5900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:7000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:7000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:7000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:8000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:8000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:8000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:9000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:9000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:9000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs264e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs264e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs264e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:gs464e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:interaptiv-mr2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:interaptiv-mr2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:interaptiv-mr2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa32r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mep: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mep: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mep: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:10000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:10000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:10000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:12000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:12000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:12000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:14000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:14000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:14000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:16: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:3900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4111: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4111: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4111: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4120: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4120: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4120: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4600: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4600: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4600: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4650: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4650: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:4650: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:5900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:7000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:7000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:7000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:8000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:8000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:8000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:9000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:9000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:9000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs264e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs264e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs264e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:gs464e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:interaptiv-mr2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:interaptiv-mr2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:interaptiv-mr2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa32r6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SDE: arch=mips:isa64r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mep: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mep: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mep: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:10000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:10000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:10000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:12000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:12000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:12000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:14000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:14000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:14000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:3900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4111: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4111: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4111: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4120: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4120: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4120: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4650: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4650: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:4650: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:5900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:7000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:7000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:7000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:8000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:8000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:8000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:9000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:9000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:9000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs264e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs264e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs264e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:gs464e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:interaptiv-mr2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:interaptiv-mr2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:interaptiv-mr2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa32r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=SVR4: arch=mips:isa64r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mep: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mep: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mep: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:10000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:10000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:10000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:12000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:12000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:12000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:14000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:14000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:14000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:16: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:3900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4111: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4111: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4111: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4120: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4120: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4120: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4600: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4600: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4600: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4650: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4650: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:4650: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:5900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:7000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:7000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:7000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:8000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:8000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:8000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:9000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:9000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:9000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs264e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs264e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs264e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:gs464e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:interaptiv-mr2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:interaptiv-mr2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:interaptiv-mr2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa32r6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Solaris: arch=mips:isa64r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mep: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mep: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mep: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:10000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:10000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:10000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:12000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:12000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:12000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:14000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:14000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:14000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:3900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4111: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4111: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4111: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4120: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4120: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4120: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4650: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4650: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:4650: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:5900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:7000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:7000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:7000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:8000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:8000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:8000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:9000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:9000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:9000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs264e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs264e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs264e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:gs464e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:interaptiv-mr2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:interaptiv-mr2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:interaptiv-mr2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa32r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Symbian: arch=mips:isa64r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mep: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mep: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mep: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:10000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:10000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:10000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:12000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:12000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:12000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:14000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:14000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:14000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:16: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:3900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4111: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4111: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4111: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4120: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4120: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4120: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4600: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4600: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4600: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4650: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4650: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:4650: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:5900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:7000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:7000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:7000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:8000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:8000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:8000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:9000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:9000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:9000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs264e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs264e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs264e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:gs464e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:interaptiv-mr2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:interaptiv-mr2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:interaptiv-mr2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa32r6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=Windows: arch=mips:isa64r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mep: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mep: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mep: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:10000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:10000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:10000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:12000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:12000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:12000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:14000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:14000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:14000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:3900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4111: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4111: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4111: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4120: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4120: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4120: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4650: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4650: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:4650: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:5900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:7000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:7000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:7000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:8000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:8000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:8000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:9000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:9000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:9000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs264e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs264e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs264e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:gs464e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:interaptiv-mr2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:interaptiv-mr2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:interaptiv-mr2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa32r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=WindowsCE: arch=mips:isa64r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mep: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mep: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mep: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:10000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:10000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:10000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:12000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:12000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:12000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:14000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:14000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:14000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:16: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:3900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4111: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4111: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4111: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4120: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4120: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4120: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4600: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4600: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4600: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4650: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4650: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:4650: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:5900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:7000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:7000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:7000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:8000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:8000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:8000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:9000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:9000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:9000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs264e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs264e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs264e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:gs464e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:interaptiv-mr2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:interaptiv-mr2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:interaptiv-mr2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa32r6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=auto: arch=mips:isa64r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=m68k:isa-c:nodiv:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mep: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mep: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mep: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips: endian=little: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:10000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:10000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:10000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:12000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:12000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:12000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:14000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:14000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:14000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:3900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4010: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4010: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4010: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4100: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4100: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4100: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4111: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4111: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4111: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4120: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4120: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4120: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4300: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4300: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4300: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4600: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4600: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4600: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4650: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4650: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:4650: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:5900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:7000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:7000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:7000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:8000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:8000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:8000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:9000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:9000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:9000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs264e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs264e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs264e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:gs464e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:interaptiv-mr2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:interaptiv-mr2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:interaptiv-mr2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa32r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=default: arch=mips:isa64r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:emac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:emac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:emac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:mac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:mac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:mac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:emac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:emac: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:mac: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=m68k:isa-c:nodiv:mac: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mep: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mep: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mep: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mep: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mep: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mep: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=auto: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=auto: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=eabi64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=n64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o32: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=double: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=none: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips: endian=big: mips_abi=o64: mipsfpu=single: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:10000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:10000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:10000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:10000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:10000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:10000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:12000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:12000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:12000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:12000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:12000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:12000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:14000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:14000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:14000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:14000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:14000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:14000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:16: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3900: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3900: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:3900: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4010: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4010: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4010: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4010: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4010: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4010: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4100: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4100: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4100: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4100: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4100: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4100: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4111: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4111: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4111: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4111: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4111: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4111: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4120: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4120: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4120: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4120: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4120: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4120: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4600: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4600: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4600: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4600: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4600: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4600: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4650: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4650: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4650: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4650: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4650: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:4650: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5400: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5400: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5400: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5900: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5900: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5900: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5900: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5900: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:5900: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:7000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:7000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:7000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:7000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:7000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:7000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:8000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:8000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:8000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:8000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:8000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:8000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:9000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:9000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:9000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:9000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:9000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:9000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs264e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs264e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs264e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs264e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs264e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs264e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:gs464e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:interaptiv-mr2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:interaptiv-mr2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:interaptiv-mr2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:interaptiv-mr2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:interaptiv-mr2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:interaptiv-mr2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r6: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r6: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa32r6: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64r2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64r2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-4.exp: tests: osabi=none: arch=mips:isa64r2: endian=little: ptype, long double
PASS -> FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=AIX: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Cygwin: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DICOS: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=DJGPP: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=FreeBSD: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Hurd: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=GNU/Linux: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=LynxOS178: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=NetBSD: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=OpenBSD: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=PikeOS: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=QNX-Neutrino: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SDE: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=SVR4: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Solaris: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Symbian: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Windows: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=WindowsCE: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=auto: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=default: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r5: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r5: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r5: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r6: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r6: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r6: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r6: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r6: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:isa64r6: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2f: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2f: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2f: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2f: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2f: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:loongson_2f: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:micromips: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:micromips: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:micromips: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:micromips: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:micromips: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:micromips: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:mips5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:mips5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:mips5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:mips5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:mips5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:mips5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon+: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon+: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon+: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon+: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon+: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon+: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:octeon: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:sb1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:sb1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:sb1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:sb1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:sb1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:sb1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:xlr: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:xlr: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:xlr: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:xlr: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:xlr: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mips:xlr: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mn10300: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mn10300: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mn10300: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mn10300: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mn10300: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=mn10300: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=moxie: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=moxie: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=moxie: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=moxie: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=moxie: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=moxie: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=msp:14: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=msp:14: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=msp:14: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=msp:14: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=msp:14: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=msp:14: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=n1h_v3m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=nios2:r2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1k: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1k: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1k: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1k: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1k: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1k: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1knd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1knd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1knd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1knd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1knd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=or1knd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:403: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:403: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:403: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:403: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:403: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:403: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:601: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:601: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:601: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:601: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:601: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:601: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:603: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:603: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:603: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:603: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:603: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:603: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:604: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:604: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:604: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:604: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:604: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:604: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:620: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:620: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:620: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:620: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:620: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:620: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:630: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:630: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:630: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:630: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:630: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:630: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:7400: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:7400: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:7400: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:7400: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:7400: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:7400: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:750: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:750: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:750: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:750: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:750: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:750: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:EC603e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:EC603e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:EC603e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:EC603e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:EC603e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:EC603e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:MPC8XX: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:MPC8XX: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:MPC8XX: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:MPC8XX: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:MPC8XX: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:MPC8XX: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:a35: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:a35: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:a35: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:a35: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:a35: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:a35: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:common: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc64: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc64: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc64: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e500mc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e5500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e5500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e5500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e5500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e5500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e5500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e6500: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e6500: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e6500: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e6500: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e6500: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=none: arch=powerpc:e6500: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64ii: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64ii: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64ii: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64ii: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64ii: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64ii: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64iii: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64iii: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64iii: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64iii: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64iii: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:rs64iii: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:titan: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:titan: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:titan: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:titan: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:titan: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:titan: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:vle: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:vle: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:vle: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:vle: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:vle: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=powerpc:vle: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv32: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv32: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv32: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv64: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv64: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv64: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv64: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv64: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=riscv:rv64: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rl78: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rl78: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rl78: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rl78: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rl78: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rl78: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rs2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rsc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rsc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rsc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rsc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rsc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rs6000:rsc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=rx:v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s12z: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s12z: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s12z: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s12z: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s12z: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s12z: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:31-bit: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:31-bit: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:31-bit: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:31-bit: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:31-bit: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:31-bit: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:64-bit: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:64-bit: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:64-bit: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:64-bit: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:64-bit: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:64-bit: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=score3: endian=auto: ptype, long double
PASS -> FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=AIX: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Cygwin: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DICOS: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=DJGPP: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Darwin: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=FreeBSD: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Hurd: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=GNU/Linux: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=LynxOS178: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=NetBSD: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=OpenBSD: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=PikeOS: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=QNX-Neutrino: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SDE: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=SVR4: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Solaris: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Symbian: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=Windows: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=WindowsCE: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=auto: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=default: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite_le: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite_le: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite_le: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite_le: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite_le: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:sparclite_le: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plus: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plus: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plus: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plus: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plus: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plus: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusa: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusb: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusb: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusb: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusb: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusb: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusb: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusd: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusd: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusd: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusd: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusd: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusd: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm8: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm8: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm8: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusm: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusv: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusv: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusv: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusv: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusv: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v8plusv: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9a: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9a: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9a: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9a: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9a: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9a: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9b: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9b: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9b: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9b: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9b: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9b: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9c: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9c: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9c: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9c: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9c: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9c: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9d: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9d: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9d: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9d: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9d: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9d: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9e: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9e: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9e: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m8: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m8: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m8: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m8: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m8: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m8: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9m: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9v: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9v: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9v: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9v: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9v: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=sparc:v9v: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tic6x: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tic6x: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tic6x: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tic6x: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tic6x: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tic6x: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx32: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx32: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx32: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tilegx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tomcat: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tomcat: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tomcat: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tomcat: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tomcat: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=tomcat: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850-rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850-rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850-rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850-rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850-rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850-rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:rh850: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:rh850: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:rh850: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:rh850: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:rh850: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850:rh850: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e1:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v3:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e2v4:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5:old-gcc-abi: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5:old-gcc-abi: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e3v5:old-gcc-abi: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e:old-gcc-abi: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e:old-gcc-abi: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e:old-gcc-abi: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e:old-gcc-abi: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e:old-gcc-abi: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=v850e:old-gcc-abi: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=vax: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=vax: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=vax: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=vax: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=vax: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=vax: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xscale: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xscale: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xscale: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xscale: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xscale: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xscale: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xstormy16: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xstormy16: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xstormy16: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xstormy16: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xstormy16: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xstormy16: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xtensa: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xtensa: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xtensa: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xtensa: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xtensa: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-7.exp: tests: osabi=none: arch=xtensa: endian=little: ptype, long double
new FAIL: gdb.compile/compile-cplus-print.exp:
new FAIL: gdb.compile/compile-cplus.exp:
PASS -> FAIL: gdb.cp/anon-ns.exp: list '
PASS -> FAIL: gdb.cp/anon-ns.exp: list
PASS -> UNRESOLVED: gdb.cp/anon-ns.exp: ptype '
new FAIL: gdb.cp/anon-ns.exp: setting breakpoint at '
new FAIL: gdb.cp/anon-ns.exp: setting breakpoint at
new FAIL: gdb.cp/bs15503.exp:
new FAIL: gdb.cp/cpexprs.exp:
new FAIL: gdb.cp/gdb2495.exp:
new FAIL: gdb.cp/iostream.exp:
new FAIL: gdb.cp/mb-templates.exp:
new FAIL: gdb.cp/mb-templates.exp: can't run to main for multi_line_foo tests.
new FAIL: gdb.cp/mb-templates.exp: disable breakpoint: disable
new FAIL: gdb.cp/mb-templates.exp: disabling location: disable
new FAIL: gdb.cp/mb-templates.exp: disabling location: enable
new FAIL: gdb.cp/mb-templates.exp: disabling location: run to breakpoint
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 FAIL: gdb.cp/mb-templates.exp: instantiation: run to breakpoint
new FAIL: gdb.cp/mb-templates.exp: instantiation: run to breakpoint 2
new FAIL: gdb.cp/mb-templates.exp: instantiation: set breakpoint
new FAIL: gdb.cp/mb-templates.exp: separate condition: run to breakpoint
new FAIL: 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/meth-typedefs.exp:
new FAIL: gdb.cp/nextoverthrow.exp:
PASS -> FAIL: gdb.cp/no-dmgl-verbose.exp: DMGL_VERBOSE-demangled f
new FAIL: gdb.cp/oranking.exp:
new FAIL: gdb.cp/pr9167.exp:
new FAIL: gdb.cp/pr9167.exp: can't run to main
new FAIL: gdb.cp/step-and-next-inline.exp:
new FAIL: gdb.cp/step-and-next-inline.exp: no_header: can't run to main
new FAIL: gdb.cp/step-and-next-inline.exp: use_header: can't run to main
new FAIL: gdb.cp/try_catch.exp:
new FAIL: gdb.cp/userdef.exp:
new FAIL: gdb.cp/using-crash.exp:
PASS -> UNRESOLVED: gdb.cp/using-crash.exp: reload file
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
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: bt
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: info args in frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: info args in frame #7
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: info frame in frame #2
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: info frame in frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: print obj
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: print object pointed to by g
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: select frame #2
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: select frame #5
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: up to frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: up to frame #7
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: bt
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: info args in frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: info args in frame #7
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: info frame in frame #2
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: info frame in frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: print obj
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: print object pointed to by g
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: select frame #2
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: select frame #5
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: up to frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: up to frame #7
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: bt
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: info args in frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: info args in frame #7
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: info frame in frame #2
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: info frame in frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: print obj
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: print object pointed to by g
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: select frame #2
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: select frame #5
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: up to frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: up to frame #7
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: bt
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: info args in frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: info args in frame #7
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: info frame in frame #2
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: info frame in frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: print obj
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: print object pointed to by g
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: select frame #2
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: select frame #5
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: up to frame #6
PASS -> FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: up to frame #7
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
new FAIL: gdb.gdb/complaints.exp:
new FAIL: gdb.gdb/python-interrupts.exp:
new FAIL: gdb.gdb/python-selftest.exp:
new FAIL: gdb.gdb/selftest.exp:
new FAIL: gdb.python/py-finish-breakpoint2.exp:
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
new FAIL: gdb.threads/tls.exp:
new FAIL: gdb.threads/tls.exp: can't run to main
PASS -> FAIL: gdb.threads/tls.exp: print a_thread_local
new FAIL: gdb.trace/unavailable.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/Fedora-i686/5b/5b930b4538f70a9f09280e36164840e48fb1c042//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5b/5b930b4538f70a9f09280e36164840e48fb1c042//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-15  4:22 [binutils-gdb] Move Rust union tests to new file gdb-buildbot
@ 2020-04-15  4:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-15  4:22 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2722

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/Fedora-i686/3d/3d1cfd43bec7c22928d12ab235151b8eeeaf4e96/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/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-i686/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/Fedora-i686/3d/3d1cfd43bec7c22928d12ab235151b8eeeaf4e96//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-15  1:34 [binutils-gdb] Remove local variable from simple.rs test case gdb-buildbot
@ 2020-04-15  1:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-15  1:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2721

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        e033dfa92f844849cc528649eee24d2b0b3f22e5

Subject of commit:
        Remove local variable from simple.rs test case

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e033dfa92f844849cc528649eee24d2b0b3f22e5/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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-i686/e0/e033dfa92f844849cc528649eee24d2b0b3f22e5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e033dfa92f844849cc528649eee24d2b0b3f22e5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-14 22:39 [binutils-gdb] gdb/infrun: stop all threads if there exists a non-stop target gdb-buildbot
@ 2020-04-14 22:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-14 22:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2720

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        53cccef118b80913d76c0737108f6c32471cd09e

Subject of commit:
        gdb/infrun: stop all threads if there exists a non-stop target

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/53/53cccef118b80913d76c0737108f6c32471cd09e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/53/53cccef118b80913d76c0737108f6c32471cd09e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/53/53cccef118b80913d76c0737108f6c32471cd09e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-14 19:49 [binutils-gdb] gdb: define convenience function 'exists_non_stop_target' gdb-buildbot
@ 2020-04-14 19:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-14 19:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2719

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        a0714d305fb78b3a2a74a2acd6d8c66da80a6387

Subject of commit:
        gdb: define convenience function 'exists_non_stop_target'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a0/a0714d305fb78b3a2a74a2acd6d8c66da80a6387/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to 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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/a0/a0714d305fb78b3a2a74a2acd6d8c66da80a6387//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a0/a0714d305fb78b3a2a74a2acd6d8c66da80a6387//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-14 17:00 [binutils-gdb] Allow pointer arithmetic with integer references gdb-buildbot
@ 2020-04-14 17:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-14 17:00 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2718

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        60e22c1eacb0df32aeeeb78c53cfd46c53a3770f

Subject of commit:
        Allow pointer arithmetic with integer references

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/60/60e22c1eacb0df32aeeeb78c53cfd46c53a3770f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/60/60e22c1eacb0df32aeeeb78c53cfd46c53a3770f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/60/60e22c1eacb0df32aeeeb78c53cfd46c53a3770f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-14 14:15 [binutils-gdb] gdb/remote: do not check for null_ptid in stop reply gdb-buildbot
@ 2020-04-14 14:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-14 14:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2717

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        e139a727be23643702eecbbcaa9c590cc680e3d7

Subject of commit:
        gdb/remote: do not check for null_ptid in stop reply

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e1/e139a727be23643702eecbbcaa9c590cc680e3d7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e1/e139a727be23643702eecbbcaa9c590cc680e3d7//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e1/e139a727be23643702eecbbcaa9c590cc680e3d7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-14 11:25 [binutils-gdb] Avoid copying in lookup_name_info gdb-buildbot
@ 2020-04-14 11:25 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-14 11:25 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2716

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        e0802d59969339502203ad8e0d161b5f93beca73

Subject of commit:
        Avoid copying in lookup_name_info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e0802d59969339502203ad8e0d161b5f93beca73/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread-readsym.exp: source reread-readsym.gdb 2
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e0802d59969339502203ad8e0d161b5f93beca73//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e0/e0802d59969339502203ad8e0d161b5f93beca73//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-14  8:42 [binutils-gdb] Avoid some copying in psymtab.c gdb-buildbot
@ 2020-04-14  8:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-14  8:42 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2715

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        8c072cb6a19abdc9d4b93c19a1d609fe1a486c32

Subject of commit:
        Avoid some copying in psymtab.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8c072cb6a19abdc9d4b93c19a1d609fe1a486c32/

*** 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/Fedora-i686/8c/8c072cb6a19abdc9d4b93c19a1d609fe1a486c32//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8c072cb6a19abdc9d4b93c19a1d609fe1a486c32//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-14  6:15 [binutils-gdb] Arm: Fix LSB of GOT for Thumb2 only PLT gdb-buildbot
@ 2020-04-14  6:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-14  6:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2714

Author:
        Tamar Christina <tamar.christina@arm.com>

Commit tested:
        a7618269b727da9cf56727c22cb538ff5f0e4d25

Subject of commit:
        Arm: Fix LSB of GOT for Thumb2 only PLT.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a7/a7618269b727da9cf56727c22cb538ff5f0e4d25/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/a7/a7618269b727da9cf56727c22cb538ff5f0e4d25//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a7/a7618269b727da9cf56727c22cb538ff5f0e4d25//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-14  3:40 [binutils-gdb] Arm: Fix thumb2 PLT branch offsets gdb-buildbot
@ 2020-04-14  3:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-14  3:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2713

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/Fedora-i686/15/15ccbdd717530f81f545a716f0df1de62aee1157/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/15/15ccbdd717530f81f545a716f0df1de62aee1157//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-14  0:57 [binutils-gdb] include: Sync plugin-api.h with GCC gdb-buildbot
@ 2020-04-14  0:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-14  0:57 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2712

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/Fedora-i686/40/40bd13ced9c03c74af9d55a98d6e06ddcf11429c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/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/Fedora-i686/40/40bd13ced9c03c74af9d55a98d6e06ddcf11429c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-13 22:10 [binutils-gdb] mmo.c: Fix ld testsuite regression "objcopy executable (pr25662)" gdb-buildbot
@ 2020-04-13 22:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-13 22:10 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2711

Author:
        Hans-Peter Nilsson <hp@bitrange.com>

Commit tested:
        7b948a2580d34e7e93bef0527ca853e22515dec4

Subject of commit:
        mmo.c: Fix ld testsuite regression "objcopy executable (pr25662)".

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7b/7b948a2580d34e7e93bef0527ca853e22515dec4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
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-i686/7b/7b948a2580d34e7e93bef0527ca853e22515dec4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7b/7b948a2580d34e7e93bef0527ca853e22515dec4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-13 19:16 [binutils-gdb] Fix py-tui.c build problem gdb-buildbot
@ 2020-04-13 19:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-13 19:16 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2710

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        6f29a53415003fd958978471801c072b2fcc8f80

Subject of commit:
        Fix py-tui.c build problem

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6f/6f29a53415003fd958978471801c072b2fcc8f80/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd 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 -> 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-i686/6f/6f29a53415003fd958978471801c072b2fcc8f80//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6f/6f29a53415003fd958978471801c072b2fcc8f80//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-13 16:22 [binutils-gdb] Don't pass NULL to memcpy in gdb gdb-buildbot
@ 2020-04-13 16:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-13 16:22 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2709

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        af62665e1339d970ab8ea3e3260dbdbde0009c2d

Subject of commit:
        Don't pass NULL to memcpy in gdb

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/af/af62665e1339d970ab8ea3e3260dbdbde0009c2d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/af/af62665e1339d970ab8ea3e3260dbdbde0009c2d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/af/af62665e1339d970ab8ea3e3260dbdbde0009c2d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-13 11:14 [binutils-gdb] alpha-coff: unitialised read gdb-buildbot
@ 2020-04-13 11:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-13 11:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2707

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        89b599df37111317b9bc6fab541eb94c8b0bea35

Subject of commit:
        alpha-coff: unitialised read

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/89/89b599df37111317b9bc6fab541eb94c8b0bea35/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/89/89b599df37111317b9bc6fab541eb94c8b0bea35//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/89/89b599df37111317b9bc6fab541eb94c8b0bea35//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-13  8:46 [binutils-gdb] alpha-vms: sanity checks for image_write gdb-buildbot
@ 2020-04-13  8:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-13  8:46 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2706

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        816995444667f936c918bc76f3945105c4e1ec1b

Subject of commit:
        alpha-vms: sanity checks for image_write

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/81/816995444667f936c918bc76f3945105c4e1ec1b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/81/816995444667f936c918bc76f3945105c4e1ec1b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/81/816995444667f936c918bc76f3945105c4e1ec1b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-13  6:31 [binutils-gdb] tekhex: Uninitialised read gdb-buildbot
@ 2020-04-13  6:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-13  6:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2705

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/Fedora-i686/b3/b3b360dec78845e30e7994cd633905da5668a96c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: cmd complete "b overload_ambiguous_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: tab complete "b overload_ambiguous_"
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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-i686/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/Fedora-i686/b3/b3b360dec78845e30e7994cd633905da5668a96c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-13  1:14 [binutils-gdb] Change ada_which_variant_applies to value API gdb-buildbot
@ 2020-04-13  1:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-13  1:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2703

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        d8af906814bd69dad694e475288401b1dee6ac3a

Subject of commit:
        Change ada_which_variant_applies to value API

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d8/d8af906814bd69dad694e475288401b1dee6ac3a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/d8/d8af906814bd69dad694e475288401b1dee6ac3a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d8/d8af906814bd69dad694e475288401b1dee6ac3a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-12 22:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-12 22:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2702

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/Fedora-i686/00/00386881a3d0f7ac89fcc5cc912da8cd69c04324/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/00/00386881a3d0f7ac89fcc5cc912da8cd69c04324//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-12 19:51 [binutils-gdb] [PowerPC] Fix debug register issues in ppc-linux-nat gdb-buildbot
@ 2020-04-12 19:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-12 19:51 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2701

Author:
        Pedro Franco de Carvalho <pedromfc@linux.ibm.com>

Commit tested:
        227c0bf4b3dd0cf65dceb58e729e9da81b38b5a7

Subject of commit:
        [PowerPC] Fix debug register issues in ppc-linux-nat

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/22/227c0bf4b3dd0cf65dceb58e729e9da81b38b5a7/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/22/227c0bf4b3dd0cf65dceb58e729e9da81b38b5a7//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/22/227c0bf4b3dd0cf65dceb58e729e9da81b38b5a7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-12 17:13 [binutils-gdb] [PowerPC] Move up some register access routines gdb-buildbot
@ 2020-04-12 17:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-12 17:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2700

Author:
        Pedro Franco de Carvalho <pedromfc@linux.ibm.com>

Commit tested:
        4db10d8f4911298d06d2bb25927946f66f0f33e3

Subject of commit:
        [PowerPC] Move up some register access routines

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4d/4db10d8f4911298d06d2bb25927946f66f0f33e3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4d/4db10d8f4911298d06d2bb25927946f66f0f33e3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4d/4db10d8f4911298d06d2bb25927946f66f0f33e3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-12 11:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-12 11:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2698

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/Fedora-i686/c0/c0502da6886e27f344375e471d6a7610a008c404/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/c0/c0502da6886e27f344375e471d6a7610a008c404//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-12  7:18 [binutils-gdb] gdb: rename partial symtab expand functions of debug info readers using legacy_psymtab gdb-buildbot
@ 2020-04-12  7:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-12  7:18 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2696

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        69b037c30cadea06c3dc7f83e427d0f729c201cd

Subject of commit:
        gdb: rename partial symtab expand functions of debug info readers using legacy_psymtab

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/69/69b037c30cadea06c3dc7f83e427d0f729c201cd/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
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-i686/69/69b037c30cadea06c3dc7f83e427d0f729c201cd//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/69/69b037c30cadea06c3dc7f83e427d0f729c201cd//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-12  4:35 [binutils-gdb] gdb: rename partial_symtab::read_dependencies to expand_dependencies gdb-buildbot
@ 2020-04-12  4:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-12  4:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2695

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        48993951ce343e397c4250c43c1708fffab01ac1

Subject of commit:
        gdb: rename partial_symtab::read_dependencies to expand_dependencies

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/48/48993951ce343e397c4250c43c1708fffab01ac1/

*** 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/Fedora-i686/48/48993951ce343e397c4250c43c1708fffab01ac1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/48/48993951ce343e397c4250c43c1708fffab01ac1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-12  2:17 [binutils-gdb] gdb: remove discard_psymtab function gdb-buildbot
@ 2020-04-12  2:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-12  2:17 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2694

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        3ad830466f440959b18b93c8361f9055fc135e54

Subject of commit:
        gdb: remove discard_psymtab function

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3a/3ad830466f440959b18b93c8361f9055fc135e54/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
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-i686/3a/3ad830466f440959b18b93c8361f9055fc135e54//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3a/3ad830466f440959b18b93c8361f9055fc135e54//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-11 14:29 [binutils-gdb] Fix comment in dwarf2/attribute.h gdb-buildbot
@ 2020-04-11 14:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-11 14:29 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2692

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/Fedora-i686/4d/4d1b9ab645d9ce72aad15011264dd9b2e52a57e8/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/4d/4d1b9ab645d9ce72aad15011264dd9b2e52a57e8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-11  7:39 [binutils-gdb] gdbsupport: Resolve shellcheck issues in create-version.sh script gdb-buildbot
@ 2020-04-11  7:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-11  7:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2689

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        8f2dae6a6a031c4a10986f96eb72f9a4c212ceb5

Subject of commit:
        gdbsupport: Resolve shellcheck issues in create-version.sh script

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8f2dae6a6a031c4a10986f96eb72f9a4c212ceb5/

*** Diff to previous build ***
==============================================
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.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
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/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8f2dae6a6a031c4a10986f96eb72f9a4c212ceb5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8f/8f2dae6a6a031c4a10986f96eb72f9a4c212ceb5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-11  5:22 [binutils-gdb] Support AT_BSDFLAGS on FreeBSD gdb-buildbot
@ 2020-04-11  5:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-11  5:22 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2688

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/Fedora-i686/a8/a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/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/Fedora-i686/a8/a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-11  2:49 [binutils-gdb] Change two functions to be methods on struct attribute gdb-buildbot
@ 2020-04-11  2:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-11  2:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2687

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/Fedora-i686/08/0826b30a9fa085ccee574465523d0560a4a01198/

*** Diff to previous build ***
==============================================
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -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/Fedora-i686/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/Fedora-i686/08/0826b30a9fa085ccee574465523d0560a4a01198//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-11  0:00 [binutils-gdb] Move DWARF-constant stringifying code to new file gdb-buildbot
@ 2020-04-11  0:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-11  0:00 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2686

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/Fedora-i686/2b/2b2558bfacba3813863da6728c021eb89fa34677/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2b/2b2558bfacba3813863da6728c021eb89fa34677//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-10 21:07 [binutils-gdb] Rewrite new die_info methods gdb-buildbot
@ 2020-04-10 21:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-10 21:07 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2685

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/Fedora-i686/ee/eeb647814fbfd71dddea45f36cb4847341f5cde7/

*** 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 -> 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-i686/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/Fedora-i686/ee/eeb647814fbfd71dddea45f36cb4847341f5cde7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-10 18:16 [binutils-gdb] Change two more functions to be methods on die_info gdb-buildbot
@ 2020-04-10 18:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-10 18:16 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2684

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        a39fdb411d43824b27d886bab42cada62a9fe431

Subject of commit:
        Change two more functions to be methods on die_info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a3/a39fdb411d43824b27d886bab42cada62a9fe431/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a3/a39fdb411d43824b27d886bab42cada62a9fe431//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a3/a39fdb411d43824b27d886bab42cada62a9fe431//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-10 15:27 [binutils-gdb] Remove sibling_die gdb-buildbot
@ 2020-04-10 15:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-10 15:27 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2683

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/Fedora-i686/43/436c571c6afc8c5affe36327ab363b98ec9adb2d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
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-i686/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/Fedora-i686/43/436c571c6afc8c5affe36327ab363b98ec9adb2d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-10 12:55 [binutils-gdb] Change dwarf2_attr_no_follow to be a method gdb-buildbot
@ 2020-04-10 12:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-10 12:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2682

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/Fedora-i686/05/052c8bb83a515768cd6af2f3707b6e05854cac54/

*** Diff to previous build ***
==============================================
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=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/Fedora-i686/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/Fedora-i686/05/052c8bb83a515768cd6af2f3707b6e05854cac54//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-10 11:01 [binutils-gdb] Remove dwarf2_cu::base_known gdb-buildbot
@ 2020-04-10 11:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-10 11:01 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2681

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/Fedora-i686/2b/2b24b6e4a6d03efc3e76ce6912394e4a86cc387b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "print "
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2b/2b24b6e4a6d03efc3e76ce6912394e4a86cc387b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-10  8:35 [binutils-gdb] Move die_info to new header gdb-buildbot
@ 2020-04-10  8:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-10  8:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2680

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c2d50fd0b30f640301c3736038bec82b40a3f0dc

Subject of commit:
        Move die_info to new header

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c2/c2d50fd0b30f640301c3736038bec82b40a3f0dc/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c2/c2d50fd0b30f640301c3736038bec82b40a3f0dc//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c2/c2d50fd0b30f640301c3736038bec82b40a3f0dc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-10  5:55 [binutils-gdb] Move more code to line-header.c gdb-buildbot
@ 2020-04-10  5:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-10  5:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2679

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0df7ad3a675692fcc75c85c43e475015b87a297e

Subject of commit:
        Move more code to line-header.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0df7ad3a675692fcc75c85c43e475015b87a297e/

*** 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: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0df7ad3a675692fcc75c85c43e475015b87a297e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0df7ad3a675692fcc75c85c43e475015b87a297e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-10  1:19 [binutils-gdb] Convert read_indirect_line_string to a method gdb-buildbot
@ 2020-04-10  3:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-10  3:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2678

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        86c0bb4c57111422b30da6b1b20256bd3a06778a

Subject of commit:
        Convert read_indirect_line_string to a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/86/86c0bb4c57111422b30da6b1b20256bd3a06778a/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/86/86c0bb4c57111422b30da6b1b20256bd3a06778a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/86/86c0bb4c57111422b30da6b1b20256bd3a06778a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-10  0:04 [binutils-gdb] Trivial fix in dwarf_decode_macro_bytes gdb-buildbot
@ 2020-04-10  0:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-10  0:04 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/2677

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/Fedora-i686/2e/2ef46c2fbbd18c3f411ef294c2c6694a1308a5a5/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2e/2ef46c2fbbd18c3f411ef294c2c6694a1308a5a5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-09 22:15 [binutils-gdb] Use a const dwarf2_section_info in macro reader gdb-buildbot
@ 2020-04-09 22:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-09 22:16 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2676

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/Fedora-i686/4f/4f9c1eda9ffc161015b6d9cc6dc958b67de680e6/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
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: tab complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/4f/4f9c1eda9ffc161015b6d9cc6dc958b67de680e6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-09 19:47 [binutils-gdb] Use a const line_header in macro reader gdb-buildbot
@ 2020-04-09 19:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-09 19:47 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/2675

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5a0e026fe12a4b1a94878494facf2b5f173a3b9c

Subject of commit:
        Use a const line_header in macro reader

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5a0e026fe12a4b1a94878494facf2b5f173a3b9c/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5a0e026fe12a4b1a94878494facf2b5f173a3b9c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5a0e026fe12a4b1a94878494facf2b5f173a3b9c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-09 13:46 [binutils-gdb] Add dwarf2_section_info::read_string method gdb-buildbot
@ 2020-04-09 13:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-09 13:46 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/2672

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4f44ae6c69b839712a33a46aaa62d58d2b16b4ca

Subject of commit:
        Add dwarf2_section_info::read_string method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4f/4f44ae6c69b839712a33a46aaa62d58d2b16b4ca/

*** 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/Fedora-i686/4f/4f44ae6c69b839712a33a46aaa62d58d2b16b4ca//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4f/4f44ae6c69b839712a33a46aaa62d58d2b16b4ca//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-09 11:35 [binutils-gdb] Convert dwarf2_section_buffer_overflow_complaint to a method gdb-buildbot
@ 2020-04-09 11:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-09 11:35 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/2671

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/Fedora-i686/a0/a0194fa8f23c64bef0f4b4bb4a76e9c64f003169/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/a0/a0194fa8f23c64bef0f4b4bb4a76e9c64f003169//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-09  9:47 [binutils-gdb] Move dwarf2_section_buffer_overflow_complaint to dwarf2/section.c gdb-buildbot
@ 2020-04-09  9:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-09  9:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2670

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/Fedora-i686/3d/3d27bbdb4bc02968ffd86c6b5c331d0e04bc3ed9/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/3d/3d27bbdb4bc02968ffd86c6b5c331d0e04bc3ed9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-09  7:17 [binutils-gdb] Split dwarf_decode_macros into two overloads gdb-buildbot
@ 2020-04-09  7:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-09  7:17 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/2669

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        9eac9650ce7de1f6e4b5ddc103d6530ebc32582d

Subject of commit:
        Split dwarf_decode_macros into two overloads

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9e/9eac9650ce7de1f6e4b5ddc103d6530ebc32582d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd 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:"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9e/9eac9650ce7de1f6e4b5ddc103d6530ebc32582d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9e/9eac9650ce7de1f6e4b5ddc103d6530ebc32582d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-09  5:29 [binutils-gdb] Change dwarf_decode_macro_bytes calling convention gdb-buildbot
@ 2020-04-09  5:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-09  5:29 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/2668

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/Fedora-i686/bf/bf80d710525ba743d0046bf1f9cab6a019d7c616/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/bf/bf80d710525ba743d0046bf1f9cab6a019d7c616//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-08 21:24 [binutils-gdb] Re: H8300 use of uninitialised value gdb-buildbot
@ 2020-04-08 21:24 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-08 21:24 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/2664

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        832a580781060f54731fcf654d76ac1332037a47

Subject of commit:
        Re: H8300 use of uninitialised value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/83/832a580781060f54731fcf654d76ac1332037a47/

*** 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/Fedora-i686/83/832a580781060f54731fcf654d76ac1332037a47//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/83/832a580781060f54731fcf654d76ac1332037a47//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-08 18:50 [binutils-gdb] Re: i386msdos uninitialised read gdb-buildbot
@ 2020-04-08 18:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-08 18:50 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/2663

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/Fedora-i686/ff/ff7685105468702de87b75599b1ea88cc309541c/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ff/ff7685105468702de87b75599b1ea88cc309541c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-08 17:03 [binutils-gdb] Re: ARC: Use of uninitialised value gdb-buildbot
@ 2020-04-08 17:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-08 17:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2662

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/Fedora-i686/4c/4c4addbe57711f1cdbb72305b8cbd03a68ae2e34/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/4c/4c4addbe57711f1cdbb72305b8cbd03a68ae2e34//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-08 14:34 [binutils-gdb] alpha-vms: Sanity check ETIR__C_CTL_DFLOC index gdb-buildbot
@ 2020-04-08 14:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-08 14:34 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/2661

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        f75fbe8ad2e3d9b34bf1f448a6df328ff361822f

Subject of commit:
        alpha-vms: Sanity check ETIR__C_CTL_DFLOC index

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f7/f75fbe8ad2e3d9b34bf1f448a6df328ff361822f/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f7/f75fbe8ad2e3d9b34bf1f448a6df328ff361822f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f7/f75fbe8ad2e3d9b34bf1f448a6df328ff361822f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-08 12:46 [binutils-gdb] Fix error message in compile-object-load.c gdb-buildbot
@ 2020-04-08 12:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-08 12:52 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2660

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        33aa3c10f663b834c9573ede439b2df3c92f0cfe

Subject of commit:
        Fix error message in compile-object-load.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/33/33aa3c10f663b834c9573ede439b2df3c92f0cfe/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/33/33aa3c10f663b834c9573ede439b2df3c92f0cfe//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/33/33aa3c10f663b834c9573ede439b2df3c92f0cfe//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-08  6:42 [binutils-gdb] [gdb] Print user/includes fields for maint commands gdb-buildbot
@ 2020-04-08  6:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-08  6:42 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/2657

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/Fedora-i686/7b/7b1eff95bed765cb20dd3168cb99896a91fcdca7/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/7b/7b1eff95bed765cb20dd3168cb99896a91fcdca7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-08  4:45 [binutils-gdb] gdb/riscv: Apply NaN boxing when writing return values into registers gdb-buildbot
@ 2020-04-08  4:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-08  4:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2656

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        dd8953924b0966e363c27ee38a0663c08f742fa0

Subject of commit:
        gdb/riscv: Apply NaN boxing when writing return values into registers

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dd8953924b0966e363c27ee38a0663c08f742fa0/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dd8953924b0966e363c27ee38a0663c08f742fa0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dd8953924b0966e363c27ee38a0663c08f742fa0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-08  2:30 [binutils-gdb] arc: Use correct string when printing bfd DEBUG data gdb-buildbot
@ 2020-04-08  2:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-08  2:30 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/2655

Author:
        Shahab Vahedi <shahab@synopsys.com>

Commit tested:
        cf2611febcfa6b7c680de31071c5658e7463eee4

Subject of commit:
        arc: Use correct string when printing bfd DEBUG data

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/cf/cf2611febcfa6b7c680de31071c5658e7463eee4/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/cf/cf2611febcfa6b7c680de31071c5658e7463eee4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/cf/cf2611febcfa6b7c680de31071c5658e7463eee4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-08  0:44 [binutils-gdb] PR25662, invalid sh_offset for first section in segment with phdrs gdb-buildbot
@ 2020-04-08  0:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-08  0:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2654

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        d16e3d2e5b717cf83c1fe47a70e0a9f2c2024a44

Subject of commit:
        PR25662, invalid sh_offset for first section in segment with phdrs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d1/d16e3d2e5b717cf83c1fe47a70e0a9f2c2024a44/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
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-i686/d1/d16e3d2e5b717cf83c1fe47a70e0a9f2c2024a44//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d1/d16e3d2e5b717cf83c1fe47a70e0a9f2c2024a44//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-07 22:20 [binutils-gdb] bfd: Add a bfd_boolean argument to bfd_get_symbol_version_string gdb-buildbot
@ 2020-04-07 22:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-07 22:20 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/2653

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        1081065c519d1bfc3847bf4b0a0ce4bc3224bcd3

Subject of commit:
        bfd: Add a bfd_boolean argument to bfd_get_symbol_version_string

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/10/1081065c519d1bfc3847bf4b0a0ce4bc3224bcd3/

*** 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/Fedora-i686/10/1081065c519d1bfc3847bf4b0a0ce4bc3224bcd3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/10/1081065c519d1bfc3847bf4b0a0ce4bc3224bcd3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-07 20:33 [binutils-gdb] Uninitialised memory read in z80-dis.c gdb-buildbot
@ 2020-04-07 20:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-07 20:33 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/2652

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a18cd0cab43f45b05e9f8bcbf8fed1d67834442d

Subject of commit:
        Uninitialised memory read in z80-dis.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a1/a18cd0cab43f45b05e9f8bcbf8fed1d67834442d/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a1/a18cd0cab43f45b05e9f8bcbf8fed1d67834442d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a1/a18cd0cab43f45b05e9f8bcbf8fed1d67834442d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-07 18:22 [binutils-gdb] gdb: bool-ify follow_fork gdb-buildbot
@ 2020-04-07 18:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-07 18:22 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/2651

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        5ab2fbf185935f387fd5c1f8b14ba9fe04b41b39

Subject of commit:
        gdb: bool-ify follow_fork

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5ab2fbf185935f387fd5c1f8b14ba9fe04b41b39/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5ab2fbf185935f387fd5c1f8b14ba9fe04b41b39//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5ab2fbf185935f387fd5c1f8b14ba9fe04b41b39//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-07 16:22 [binutils-gdb] Add code to the BFD library to handle opening files with pathnames longer than MAX_PATH on Win32 systems gdb-buildbot
@ 2020-04-07 16:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-07 16:22 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2650

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        0b8448af68b2720d08640604355ef7d961a5acd6

Subject of commit:
        Add code to the BFD library to handle opening files with pathnames longer than MAX_PATH on Win32 systems.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0b8448af68b2720d08640604355ef7d961a5acd6/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/valgrind-disp-step.exp: continue to main
PASS -> UNRESOLVED: gdb.base/valgrind-disp-step.exp: displaced off: set displaced-stepping off
new FAIL: gdb.base/valgrind-disp-step.exp: info breakpoints
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0b8448af68b2720d08640604355ef7d961a5acd6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0b8448af68b2720d08640604355ef7d961a5acd6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-07 14:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-07 14:06 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/2649

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/Fedora-i686/ec/ec2e748ad396c868839c977aa27d0333eb085970/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ec/ec2e748ad396c868839c977aa27d0333eb085970//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-07 12:06 [binutils-gdb] bfd: Change num_group to unsigned int gdb-buildbot
@ 2020-04-07 12:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-07 12:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2648

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/Fedora-i686/cd/cda7e5603f6efd7c3716e45cc6ea11b70dd8daae/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/cd/cda7e5603f6efd7c3716e45cc6ea11b70dd8daae//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-07  9:54 [binutils-gdb] include: Sync plugin-api.h with GCC gdb-buildbot
@ 2020-04-07  9:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-07  9:54 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/2647

Author:
        Martin Liska <mliska@suse.cz>

Commit tested:
        dfb68cc35803369cbd163c2ebc07fb27e81d9950

Subject of commit:
        include: Sync plugin-api.h with GCC

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/df/dfb68cc35803369cbd163c2ebc07fb27e81d9950/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/df/dfb68cc35803369cbd163c2ebc07fb27e81d9950//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/df/dfb68cc35803369cbd163c2ebc07fb27e81d9950//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-07  6:14 [binutils-gdb] [gdb] Print user for maint info psymtabs gdb-buildbot
@ 2020-04-07  6:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-07  6:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2645

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        a64fafb54577a87919a600474a3e4abe3510341a

Subject of commit:
        [gdb] Print user for maint info psymtabs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a6/a64fafb54577a87919a600474a3e4abe3510341a/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str=\'STR: cmd 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: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a6/a64fafb54577a87919a600474a3e4abe3510341a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a6/a64fafb54577a87919a600474a3e4abe3510341a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-07  3:52 [binutils-gdb] Overlarge allocation in _bfd_generic_read_ar_hdr_mag gdb-buildbot
@ 2020-04-07  3:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-07  3:52 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/2644

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        65109548f8fb13ac4a6c3311ea46a8b69c548576

Subject of commit:
        Overlarge allocation in _bfd_generic_read_ar_hdr_mag

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/65/65109548f8fb13ac4a6c3311ea46a8b69c548576/

*** 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 -> 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/Fedora-i686/65/65109548f8fb13ac4a6c3311ea46a8b69c548576//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/65/65109548f8fb13ac4a6c3311ea46a8b69c548576//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-07  2:06 [binutils-gdb] Mention .tdata in comment in _bfd_elf_tls_setup() gdb-buildbot
@ 2020-04-07  2:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-07  2:06 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/2643

Author:
        Sebastian Huber <sebastian.huber@embedded-brains.de>

Commit tested:
        fdde2fb60cc2d0c60d9d3f085a7b6c648376991e

Subject of commit:
        Mention .tdata in comment in _bfd_elf_tls_setup()

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/fd/fdde2fb60cc2d0c60d9d3f085a7b6c648376991e/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fd/fdde2fb60cc2d0c60d9d3f085a7b6c648376991e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fd/fdde2fb60cc2d0c60d9d3f085a7b6c648376991e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-06 23:55 [binutils-gdb] ECOFF archive uninitialised read gdb-buildbot
@ 2020-04-06 23:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-06 23:55 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/2642

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        cf28cfef6006c41b74af126bc6ef26590d7bd1b9

Subject of commit:
        ECOFF archive uninitialised read

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/cf/cf28cfef6006c41b74af126bc6ef26590d7bd1b9/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/cf/cf28cfef6006c41b74af126bc6ef26590d7bd1b9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/cf/cf28cfef6006c41b74af126bc6ef26590d7bd1b9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-06 21:59 [binutils-gdb] i386msdos uninitialised read gdb-buildbot
@ 2020-04-06 21:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-06 21:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2641

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        5e737279c6e832a757f0326128e5a5f96fbdd291

Subject of commit:
        i386msdos uninitialised read

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5e/5e737279c6e832a757f0326128e5a5f96fbdd291/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5e/5e737279c6e832a757f0326128e5a5f96fbdd291//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5e/5e737279c6e832a757f0326128e5a5f96fbdd291//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-06 17:30 [binutils-gdb] XCOFF64 uninitialised read gdb-buildbot
@ 2020-04-06 17:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-06 17:30 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/2639

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        c15a8f173e9b01dd962ba857b7deb547d34bca5b

Subject of commit:
        XCOFF64 uninitialised read

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c1/c15a8f173e9b01dd962ba857b7deb547d34bca5b/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c1/c15a8f173e9b01dd962ba857b7deb547d34bca5b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c1/c15a8f173e9b01dd962ba857b7deb547d34bca5b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-06 15:42 [binutils-gdb] H8300 use of uninitialised value gdb-buildbot
@ 2020-04-06 15:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-06 15:42 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2638

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        57cb32b3c366585f7fafd6a741771ce826ba95f3

Subject of commit:
        H8300 use of uninitialised value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/57/57cb32b3c366585f7fafd6a741771ce826ba95f3/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/57/57cb32b3c366585f7fafd6a741771ce826ba95f3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/57/57cb32b3c366585f7fafd6a741771ce826ba95f3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-06 13:12 [binutils-gdb] ARC: Use of uninitialised value gdb-buildbot
@ 2020-04-06 13:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-06 13:12 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/2637

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/Fedora-i686/be/beea5cc1bc2249389dc77ea0c86ab82dafd05bb5/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/be/beea5cc1bc2249389dc77ea0c86ab82dafd05bb5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-06 11:24 [binutils-gdb] NS32K arg_bufs uninitialised gdb-buildbot
@ 2020-04-06 11:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-06 11:32 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2636

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/Fedora-i686/03/03704c7704870a0e6cbb0eae99488d544c4adb30/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/03/03704c7704870a0e6cbb0eae99488d544c4adb30//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-06  8:23 [binutils-gdb] s12z disassembler tidy gdb-buildbot
@ 2020-04-06  8:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-06  8:23 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/2635

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        d1023b5d1e4483e5fa3bdab97bc041e1b1c05c5d

Subject of commit:
        s12z disassembler tidy

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d1/d1023b5d1e4483e5fa3bdab97bc041e1b1c05c5d/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d1/d1023b5d1e4483e5fa3bdab97bc041e1b1c05c5d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d1/d1023b5d1e4483e5fa3bdab97bc041e1b1c05c5d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-05 21:48 [binutils-gdb] Make dwarf2_evaluate_property parameter const gdb-buildbot
@ 2020-04-05 21:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-05 21:48 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/2632

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/Fedora-i686/fe/fe26d3a34a223a86fddb59ed70a621a13940a088/

*** 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/Fedora-i686/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/Fedora-i686/fe/fe26d3a34a223a86fddb59ed70a621a13940a088//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-05 20:00 [binutils-gdb] [gdb/testsuite] Fix gdb.threads/omp-par-scope.exp XPASS gdb-buildbot
@ 2020-04-05 20:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-05 20:00 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/2631

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        c623cc90890de9958bcee382cc60ff1b605532ab

Subject of commit:
        [gdb/testsuite] Fix gdb.threads/omp-par-scope.exp XPASS

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c6/c623cc90890de9958bcee382cc60ff1b605532ab/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c6/c623cc90890de9958bcee382cc60ff1b605532ab//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c6/c623cc90890de9958bcee382cc60ff1b605532ab//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-05 18:13 [binutils-gdb] gdb: remove HAVE_DECL_PTRACE gdb-buildbot
@ 2020-04-05 18:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-05 18:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2630

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        c884cc46193c98fd0b90ce8a79c081f6a1c18cc6

Subject of commit:
        gdb: remove HAVE_DECL_PTRACE

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c8/c884cc46193c98fd0b90ce8a79c081f6a1c18cc6/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-print: cmd complete "print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "print "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: cmd complete "b overload_ambiguous_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: tab complete "b overload_ambiguous_"
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c8/c884cc46193c98fd0b90ce8a79c081f6a1c18cc6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c8/c884cc46193c98fd0b90ce8a79c081f6a1c18cc6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-05 16:01 [binutils-gdb] Update the return type of gdb_ptrace to be more flexible gdb-buildbot
@ 2020-04-05 16:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-05 16:01 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/2629

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        1ff700c202465275d1ca3aee4dd979db36274294

Subject of commit:
        Update the return type of gdb_ptrace to be more flexible

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/1f/1ff700c202465275d1ca3aee4dd979db36274294/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1f/1ff700c202465275d1ca3aee4dd979db36274294//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1f/1ff700c202465275d1ca3aee4dd979db36274294//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-05 14:12 [binutils-gdb] Fix assert in c-exp.y gdb-buildbot
@ 2020-04-05 14:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-05 14:22 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2628

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/Fedora-i686/f7/f7d4f0b1b9519fa10eb04cb195bdf7b5044d73c7/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
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: tab complete "b
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/f7/f7d4f0b1b9519fa10eb04cb195bdf7b5044d73c7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-05 11:56 [binutils-gdb] Avoid stringop-truncation errors gdb-buildbot
@ 2020-04-05 11:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-05 11:56 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/2627

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/Fedora-i686/f6/f67210ff1c4200ea668189d086c6b39145cd876f/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/f6/f67210ff1c4200ea668189d086c6b39145cd876f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-05  8:19 [binutils-gdb] Fix Ada val_print removal regression gdb-buildbot
@ 2020-04-05  8:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-05  8:19 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/2625

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        70304be939301a91dade0dc7d4234c081372bd24

Subject of commit:
        Fix Ada val_print removal regression

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/70/70304be939301a91dade0dc7d4234c081372bd24/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/70/70304be939301a91dade0dc7d4234c081372bd24//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/70/70304be939301a91dade0dc7d4234c081372bd24//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-05  6:28 [binutils-gdb] Inherit ppc_nbsd_nat_target from nbsd_nat_target gdb-buildbot
@ 2020-04-05  6:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-05  6:28 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/2624

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        9faa006d11a5e08264a007463435f84b77864c9c

Subject of commit:
        Inherit ppc_nbsd_nat_target from nbsd_nat_target

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9f/9faa006d11a5e08264a007463435f84b77864c9c/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.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 "
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9f/9faa006d11a5e08264a007463435f84b77864c9c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9f/9faa006d11a5e08264a007463435f84b77864c9c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-05  4:40 [binutils-gdb] Add support for NetBSD threads in hppa-nbsd-nat.c gdb-buildbot
@ 2020-04-05  4:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-05  4:43 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2623

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        4a90f062056e842c3f53293482e0039db0da3245

Subject of commit:
        Add support for NetBSD threads in hppa-nbsd-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4a/4a90f062056e842c3f53293482e0039db0da3245/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4a/4a90f062056e842c3f53293482e0039db0da3245//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4a/4a90f062056e842c3f53293482e0039db0da3245//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-05  0:32 [binutils-gdb] Add support for NetBSD threads in ppc-nbsd-nat.c gdb-buildbot
@ 2020-04-05  0:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-05  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/2621

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        c7da12c72c2eeb4f62e772df5cbb1f50f35a84ee

Subject of commit:
        Add support for NetBSD threads in ppc-nbsd-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c7da12c72c2eeb4f62e772df5cbb1f50f35a84ee/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c7da12c72c2eeb4f62e772df5cbb1f50f35a84ee//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c7da12c72c2eeb4f62e772df5cbb1f50f35a84ee//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-04 22:44 [binutils-gdb] plugin: Don't invoke LTO-wrapper gdb-buildbot
@ 2020-04-04 22:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-04 22:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2620

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        3d98c46092341c1373d960d0a66ca502d5b7ee7f

Subject of commit:
        plugin: Don't invoke LTO-wrapper

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3d/3d98c46092341c1373d960d0a66ca502d5b7ee7f/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3d/3d98c46092341c1373d960d0a66ca502d5b7ee7f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3d/3d98c46092341c1373d960d0a66ca502d5b7ee7f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-04 20:31 [binutils-gdb] plugin: Use LDPT_ADD_SYMBOLS_V2 to get symbol type gdb-buildbot
@ 2020-04-04 20:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-04 20:31 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/2619

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/Fedora-i686/c3/c3a1714ce7806002726a60c0db09371425fe3097/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c3/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/Fedora-i686/c3/c3a1714ce7806002726a60c0db09371425fe3097//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-04 18:44 [binutils-gdb] XCOFF uninitialized read gdb-buildbot
@ 2020-04-04 18:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-04 18:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2618

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        67338173a49204a2097ca1e2c63c6bc1fe972c3e

Subject of commit:
        XCOFF uninitialized read

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/67/67338173a49204a2097ca1e2c63c6bc1fe972c3e/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/67/67338173a49204a2097ca1e2c63c6bc1fe972c3e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/67/67338173a49204a2097ca1e2c63c6bc1fe972c3e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-04 12:57 [binutils-gdb] PowerPC disassembly of odd sized sections gdb-buildbot
@ 2020-04-04 12:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-04 12:57 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2615

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/Fedora-i686/83/833d919c93d52644173d587a6fc8e4dd36edc49e/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/83/833d919c93d52644173d587a6fc8e4dd36edc49e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-04  9:04 [binutils-gdb] Disable get_ptrace_pid for NetBSD gdb-buildbot
@ 2020-04-04  9:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-04  9:04 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/2613

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        f09db380942d1393e6f60d1ecaa7d4b6edfaaecf

Subject of commit:
        Disable get_ptrace_pid for NetBSD

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f0/f09db380942d1393e6f60d1ecaa7d4b6edfaaecf/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f0/f09db380942d1393e6f60d1ecaa7d4b6edfaaecf//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f0/f09db380942d1393e6f60d1ecaa7d4b6edfaaecf//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-04  7:16 [binutils-gdb] Fix discrepancies in nm's --line-number output by adding support for the DW_AT_specification DWARF Attttribute gdb-buildbot
@ 2020-04-04  7:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-04  7:16 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/2612

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        f3a08f77787cfe1b9edb7b5ab82ce7a2d527c8cf

Subject of commit:
        Fix discrepancies in nm's --line-number output by adding support for the DW_AT_specification DWARF Attttribute.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f3/f3a08f77787cfe1b9edb7b5ab82ce7a2d527c8cf/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f3/f3a08f77787cfe1b9edb7b5ab82ce7a2d527c8cf//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f3/f3a08f77787cfe1b9edb7b5ab82ce7a2d527c8cf//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-04  5:30 [binutils-gdb] Include: Sync lto-symtab.h and plugin-api.h with GCC gdb-buildbot
@ 2020-04-04  5:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-04  5:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2611

Author:
        Martin Liska <mliska@suse.cz>

Commit tested:
        3734bec8336f6f33927ab99460cb681035c2ca4f

Subject of commit:
        Include: Sync lto-symtab.h and plugin-api.h with GCC

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/37/3734bec8336f6f33927ab99460cb681035c2ca4f/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/37/3734bec8336f6f33927ab99460cb681035c2ca4f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/37/3734bec8336f6f33927ab99460cb681035c2ca4f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-03 23:08 [binutils-gdb] Avoid get_ptrace_pid() usage on NetBSD in x86-bsd-nat.c gdb-buildbot
@ 2020-04-03 23:08 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-03 23:08 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/2608

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        fcc7376e0a4c3a68ef0b9d12fcc3733416b1cc8c

Subject of commit:
        Avoid get_ptrace_pid() usage on NetBSD in x86-bsd-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/fc/fcc7376e0a4c3a68ef0b9d12fcc3733416b1cc8c/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fc/fcc7376e0a4c3a68ef0b9d12fcc3733416b1cc8c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fc/fcc7376e0a4c3a68ef0b9d12fcc3733416b1cc8c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-03 21:20 [binutils-gdb] gdb: Handle W and X remote packets without giving a warning gdb-buildbot
@ 2020-04-03 21:21 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-03 21:21 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2607

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        cada5fc921e39a1945c422eea055c8b326d8d353

Subject of commit:
        gdb: Handle W and X remote packets without giving a warning

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ca/cada5fc921e39a1945c422eea055c8b326d8d353/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
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 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/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ca/cada5fc921e39a1945c422eea055c8b326d8d353//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ca/cada5fc921e39a1945c422eea055c8b326d8d353//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-03 18:52 [binutils-gdb] gdb/testsuite/fortran: Add mixed language stack test gdb-buildbot
@ 2020-04-03 18:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-03 18:52 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/2606

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/Fedora-i686/6b/6b8c53f2f1c0cf5bee46120d892d4c72571375eb/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.fortran/mixed-lang-stack.exp: lang=auto: print obj
new FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c++: print obj
new FAIL: gdb.fortran/mixed-lang-stack.exp: lang=c: print obj
new FAIL: gdb.fortran/mixed-lang-stack.exp: lang=fortran: print obj
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/6b/6b8c53f2f1c0cf5bee46120d892d4c72571375eb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-03 17:03 [binutils-gdb] gdb: Remove C++ symbol aliases from completion list gdb-buildbot
@ 2020-04-03 17:08 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-03 17:08 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2605

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        19a2740f7f2ea0f65745a3c00cf8a64647378aa3

Subject of commit:
        gdb: Remove C++ symbol aliases from completion list

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/19/19a2740f7f2ea0f65745a3c00cf8a64647378aa3/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/19/19a2740f7f2ea0f65745a3c00cf8a64647378aa3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/19/19a2740f7f2ea0f65745a3c00cf8a64647378aa3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-03 14:34 [binutils-gdb] gdb: Restructure the completion_tracker class gdb-buildbot
@ 2020-04-03 14:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-03 14:34 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/2604

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/Fedora-i686/72/724fd9ba432a20ef2e3f2c0d6060bff131226816/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/72/724fd9ba432a20ef2e3f2c0d6060bff131226816//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-03 12:47 [binutils-gdb] [gdb/testsuite] Fix gdb.opt/inline-locals.exp KFAILs gdb-buildbot
@ 2020-04-03 12:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-03 12:50 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2603

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/Fedora-i686/d8/d8c8b84859d057c58c901c08367ecc9f8a9f09dc/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
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=0: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/d8/d8c8b84859d057c58c901c08367ecc9f8a9f09dc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-03 10:27 [binutils-gdb] Additional c99 elfxx-riscv.c fix gdb-buildbot
@ 2020-04-03 10:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-03 10:27 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/2602

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/Fedora-i686/ef/effc14f54c3fdcb700f22ce53cef97665c0fdf7f/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ef/effc14f54c3fdcb700f22ce53cef97665c0fdf7f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-03  8:41 [binutils-gdb] [gdb/testsuite] Add test-case gdb.dwarf2/break-inline-psymtab.exp gdb-buildbot
@ 2020-04-03  8:41 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-03  8:41 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/2601

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/Fedora-i686/a9/a9933ccf467ac771747db9dba541afdf1b72a3f8/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/a9/a9933ccf467ac771747db9dba541afdf1b72a3f8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-03  6:49 [binutils-gdb] Fix seg-fault in strip when copying a file containing corrupt secondary relocs gdb-buildbot
@ 2020-04-03  6:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-03  6:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2600

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        ac4bf06ca22b641b10fe37763bf57e177ee22864

Subject of commit:
        Fix seg-fault in strip when copying a file containing corrupt secondary relocs.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ac/ac4bf06ca22b641b10fe37763bf57e177ee22864/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ac/ac4bf06ca22b641b10fe37763bf57e177ee22864//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ac/ac4bf06ca22b641b10fe37763bf57e177ee22864//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-02 16:17 [binutils-gdb] Rename the read symbol to xread gdb-buildbot
@ 2020-04-02 16:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-02 16:17 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/2593

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        5ccd2fb722d1900adf799dd808fa2146cac85d0d

Subject of commit:
        Rename the read symbol to xread

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5c/5ccd2fb722d1900adf799dd808fa2146cac85d0d/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5c/5ccd2fb722d1900adf799dd808fa2146cac85d0d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5c/5ccd2fb722d1900adf799dd808fa2146cac85d0d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-02 14:31 [binutils-gdb] Add support for NetBSD threads in sparc-nat.c gdb-buildbot
@ 2020-04-02 14:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-02 14:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2592

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        2108a63a5a736c2329a2a92ca58e0b9993dc5d42

Subject of commit:
        Add support for NetBSD threads in sparc-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/21/2108a63a5a736c2329a2a92ca58e0b9993dc5d42/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/21/2108a63a5a736c2329a2a92ca58e0b9993dc5d42//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/21/2108a63a5a736c2329a2a92ca58e0b9993dc5d42//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-02 11:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-02 11:48 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/2591

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/Fedora-i686/32/327ef784ba105f067f5c1d587908259d7aabb971/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/32/327ef784ba105f067f5c1d587908259d7aabb971//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-02 10:00 [binutils-gdb] Fix a small set of Z80 problems gdb-buildbot
@ 2020-04-02 10:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-02 10:01 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2590

Author:
        Sergey Belyashov <sergey.belyashov@gmail.com>

Commit tested:
        68e52bc7ecfbfdc8d5f85716a8ac7668e211f360

Subject of commit:
        Fix a small set of Z80 problems.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/68/68e52bc7ecfbfdc8d5f85716a8ac7668e211f360/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/68/68e52bc7ecfbfdc8d5f85716a8ac7668e211f360//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/68/68e52bc7ecfbfdc8d5f85716a8ac7668e211f360//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-02  7:41 [binutils-gdb] Remove a double free in the BFD library triggered when parsing a corrupt file gdb-buildbot
@ 2020-04-02  7:41 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-02  7:41 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2589

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        ecbbbdba7182865e522e0893915e9be487fe14b0

Subject of commit:
        Remove a double free in the BFD library triggered when parsing a corrupt file.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ec/ecbbbdba7182865e522e0893915e9be487fe14b0/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
KFAIL -> KPASS: gdb.fortran/derived-type-striding.exp: p point_dimension
KFAIL -> KPASS: gdb.fortran/derived-type-striding.exp: p point_mixed_dimension
PASS -> FAIL: gdb.fortran/info-modules.exp: info module variables: check for entry 'info-types.f90', '35', 'Type __vtype_mod1_M1t1 mod1::__vtab_mod1_M1t1;'
PASS -> FAIL: gdb.fortran/info-modules.exp: info module variables: check for entry 'info-types.f90', '35', 'Type m1t1 mod1::__def_init_mod1_M1t1;'
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ec/ecbbbdba7182865e522e0893915e9be487fe14b0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ec/ecbbbdba7182865e522e0893915e9be487fe14b0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-02  5:35 [binutils-gdb] Add support for NetBSD threads in sh-nbsd-nat.c gdb-buildbot
@ 2020-04-02  5:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-02  5:35 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/2588

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/Fedora-i686/a2/a225c9a8692814b4a29360479aee217d73e22d50/

*** 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=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/a2/a225c9a8692814b4a29360479aee217d73e22d50//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-02  3:22 [binutils-gdb] Inherit sh_nbsd_nat_target from nbsd_nat_target gdb-buildbot
@ 2020-04-02  3:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-02  3:22 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/2587

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/Fedora-i686/98/9809762324491b851332ce600ae9bde8dd34f601/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
KPASS -> KFAIL: gdb.fortran/derived-type-striding.exp: p point_dimension
KPASS -> KFAIL: gdb.fortran/derived-type-striding.exp: p point_mixed_dimension
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/98/9809762324491b851332ce600ae9bde8dd34f601//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-02  1:33 [binutils-gdb] Include missing header to get missing declarations gdb-buildbot
@ 2020-04-02  1:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-02  1:42 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2586

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/Fedora-i686/9e/9e38d619101a7637c9aba3f722690bef127fa6a6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/9e/9e38d619101a7637c9aba3f722690bef127fa6a6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-01 23:29 [binutils-gdb] Rewrite nbsd_nat_target::pid_to_exec_file to sysctl(3) gdb-buildbot
@ 2020-04-01 23:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-01 23:29 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2585

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/Fedora-i686/a2/a2ecbe9fb7355698aad97841f9717cdfd7096d95/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
KFAIL -> KPASS: gdb.fortran/derived-type-striding.exp: p point_dimension
KFAIL -> KPASS: gdb.fortran/derived-type-striding.exp: p point_mixed_dimension
PASS -> FAIL: gdb.fortran/info-modules.exp: info module variables: check for entry 'info-types.f90', '35', 'Type __vtype_mod1_M1t1 mod1::__vtab_mod1_M1t1;'
PASS -> FAIL: gdb.fortran/info-modules.exp: info module variables: check for entry 'info-types.f90', '35', 'Type m1t1 mod1::__def_init_mod1_M1t1;'
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/a2/a2ecbe9fb7355698aad97841f9717cdfd7096d95//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-01 21:17 [binutils-gdb] [gdb] Skip imports of c++ CUs gdb-buildbot
@ 2020-04-01 21:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-01 21:17 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/2584

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/Fedora-i686/58/589902954da0d1dd140b33e578954746c9bfc374/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
KPASS -> KFAIL: gdb.fortran/derived-type-striding.exp: p point_dimension
KPASS -> KFAIL: gdb.fortran/derived-type-striding.exp: p point_mixed_dimension
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed vla1
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/58/589902954da0d1dd140b33e578954746c9bfc374//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-01 19:29 [binutils-gdb] [gdb/testsuite] Give up after consecutive timeouts in completion-support.exp gdb-buildbot
@ 2020-04-01 19:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-01 19:29 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2583

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/Fedora-i686/73/7325b16ba4dc33a54356fd2b8fde79311c51b121/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip-inline.exp: double step: in the main
PASS -> FAIL: gdb.base/skip-inline.exp: double step: step into baz, since foo will be skipped
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/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/Fedora-i686/73/7325b16ba4dc33a54356fd2b8fde79311c51b121//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-01 17:21 [binutils-gdb] Initialize base_value in pascal_object_print_value gdb-buildbot
@ 2020-04-01 17:21 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-01 17:21 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2582

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/Fedora-i686/77/771dd3a88b1f0e03a110fc4f2207913df45f8b4b/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
KFAIL -> KPASS: gdb.fortran/derived-type-striding.exp: p point_dimension
KFAIL -> KPASS: gdb.fortran/derived-type-striding.exp: p point_mixed_dimension
PASS -> FAIL: gdb.fortran/info-modules.exp: info module variables: check for entry 'info-types.f90', '35', 'Type __vtype_mod1_M1t1 mod1::__vtab_mod1_M1t1;'
PASS -> FAIL: gdb.fortran/info-modules.exp: info module variables: check for entry 'info-types.f90', '35', 'Type m1t1 mod1::__def_init_mod1_M1t1;'
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/77/771dd3a88b1f0e03a110fc4f2207913df45f8b4b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-01 15:10 [binutils-gdb] arc: Migrate to new target features gdb-buildbot
@ 2020-04-01 15:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-01 15:10 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/2581

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/Fedora-i686/81/817a7585764366397879cbbedfd7e9c1454b656c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print -"
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/81/817a7585764366397879cbbedfd7e9c1454b656c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-01 13:00 [binutils-gdb] Fix dwarf2_name caching bug gdb-buildbot
@ 2020-04-01 13:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-01 13:00 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/2580

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        67430cd00afcc270a27e44b10f9ef4249d554e66

Subject of commit:
        Fix dwarf2_name caching bug

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/67/67430cd00afcc270a27e44b10f9ef4249d554e66/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/67/67430cd00afcc270a27e44b10f9ef4249d554e66//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/67/67430cd00afcc270a27e44b10f9ef4249d554e66//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-01 10:48 [binutils-gdb] gdb: define builtin long type to be 64 bits on amd64 Cygwin gdb-buildbot
@ 2020-04-01 10:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-01 10:48 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/2579

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        30efb6c7af7ad8b50936157fe0a0ef22d6787dd7

Subject of commit:
        gdb: define builtin long type to be 64 bits on amd64 Cygwin

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/30/30efb6c7af7ad8b50936157fe0a0ef22d6787dd7/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/30/30efb6c7af7ad8b50936157fe0a0ef22d6787dd7//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/30/30efb6c7af7ad8b50936157fe0a0ef22d6787dd7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-01  6:45 [binutils-gdb] gdb: rename content of i386-windows-tdep.c, cygwin to windows gdb-buildbot
@ 2020-04-01  6:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-01  6:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2577

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/Fedora-i686/59/5982a56ab9d161923e75712fcb358824748ea4ba/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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 "|"
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
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.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/59/5982a56ab9d161923e75712fcb358824748ea4ba//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-01  4:52 [binutils-gdb] gdb: rename i386-cygwin-tdep.c to i386-windows-tdep.c gdb-buildbot
@ 2020-04-01  4:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-01  4:52 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/2576

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        7a1998dffb58ee1fab5edbd13458373654a1da42

Subject of commit:
        gdb: rename i386-cygwin-tdep.c to i386-windows-tdep.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7a/7a1998dffb58ee1fab5edbd13458373654a1da42/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "print "
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7a/7a1998dffb58ee1fab5edbd13458373654a1da42//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7a/7a1998dffb58ee1fab5edbd13458373654a1da42//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-01  2:03 [binutils-gdb] gdb: add Windows OS ABI gdb-buildbot
@ 2020-04-01  3:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-01  3:04 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/2575

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/Fedora-i686/05/053205cc4021026a5a1db05869d04bf7ad9ea1bd/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: set architecture powerpc:rs64ii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64ii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: set architecture powerpc:rs64iii
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:rs64iii: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: set architecture powerpc:titan
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:titan: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: set architecture powerpc:vle
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=powerpc:vle: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: set architecture riscv
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: set architecture riscv:rv32
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv32: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: set architecture riscv:rv64
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=riscv:rv64: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: set architecture rl78
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rl78: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:6000: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs1: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rs2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rs6000:rsc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: set architecture rx
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: set architecture rx:v2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: set architecture rx:v3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=rx:v3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: set architecture s12z
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s12z: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:31-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=s390:64-bit: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: set architecture score3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: set architecture score7
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=score7: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: set architecture sh-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: set architecture sh2
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set architecture sh2a-nofpu-or-sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set architecture sh2a-nofpu-or-sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu-or-sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: set architecture sh2a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: set architecture sh2a-or-sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: set architecture sh2a-or-sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a-or-sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: set architecture sh2a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: set architecture sh2e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh2e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: set architecture sh3-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: set architecture sh3-nommu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3-nommu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: set architecture sh3
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: set architecture sh3e
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh3e: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: set architecture sh4-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: set architecture sh4-nommu-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4-nommu-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: set architecture sh4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: set architecture sh4a-nofpu
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a-nofpu: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: set architecture sh4a
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4a: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: set architecture sh4al-dsp
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh4al-dsp: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: set architecture sh
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sh: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: set architecture simple
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=simple: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: set architecture sparc
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: set architecture sparc:sparclet
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=auto: show endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=big: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: disassemble 0x0,+4
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: print, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: print, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: print, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: ptype, double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: ptype, float
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: ptype, long double
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: arch=sparc:sparclet: endian=little: set endian
new UNRESOLVED: gdb.base/all-architectures-6.exp: tests: osabi=Windows: set osabi
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/Fedora-i686/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/Fedora-i686/05/053205cc4021026a5a1db05869d04bf7ad9ea1bd//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-04-01  0:44 [binutils-gdb] gdb: move enum gdb_osabi to osabi.h gdb-buildbot
@ 2020-04-01  0:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-04-01  0:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2574

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        fe4b2ee65cfe923fcb25427db884e1d2e90fef6e

Subject of commit:
        gdb: move enum gdb_osabi to osabi.h

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/fe/fe4b2ee65cfe923fcb25427db884e1d2e90fef6e/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fe/fe4b2ee65cfe923fcb25427db884e1d2e90fef6e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/fe/fe4b2ee65cfe923fcb25427db884e1d2e90fef6e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-31 21:47 [binutils-gdb] gdb: recognize 64 bits Windows executables as Cygwin osabi gdb-buildbot
@ 2020-03-31 21:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-31 21:57 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2573

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/Fedora-i686/cb/cb9b645d3e6b6164317104ed1a2a41c06da37bf4/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/cb/cb9b645d3e6b6164317104ed1a2a41c06da37bf4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-31 18:35 [binutils-gdb] [gdb/testsuite] Add cache_verify option for gdb_caching_procs gdb-buildbot
@ 2020-03-31 18:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-31 18:35 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/2571

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/Fedora-i686/2f/2f89101fe8b6a2423116a1ad1891f56bf6fc9510/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2f/2f89101fe8b6a2423116a1ad1891f56bf6fc9510//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-31 16:48 [binutils-gdb] PR25675: SIGSEGV in bfd_octets_per_byte gdb-buildbot
@ 2020-03-31 16:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-31 16:48 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/2570

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        4b3ecb3b91b1b6154a6444efdcbadb90854a6654

Subject of commit:
        PR25675: SIGSEGV in bfd_octets_per_byte

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4b/4b3ecb3b91b1b6154a6444efdcbadb90854a6654/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4b/4b3ecb3b91b1b6154a6444efdcbadb90854a6654//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4b/4b3ecb3b91b1b6154a6444efdcbadb90854a6654//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-31 15:09 [binutils-gdb] asan: alpha-vms: null dereference gdb-buildbot
@ 2020-03-31 15:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-31 15:16 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2569

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/Fedora-i686/7b/7bac4137d757be98de8f6f8d8a649f04cacfdd2f/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-print: cmd complete "print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "print -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/7b/7bac4137d757be98de8f6f8d8a649f04cacfdd2f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-31 10:34 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL with gdb.base/maint.exp gdb-buildbot
@ 2020-03-31 10:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-31 10:34 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/2567

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/Fedora-i686/ea/eaeaf44cfdc9a4096a0dd52fa0606f29d4bfd48e/

*** 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/Fedora-i686/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/Fedora-i686/ea/eaeaf44cfdc9a4096a0dd52fa0606f29d4bfd48e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-31  1:34 [binutils-gdb] Add C parser support for "restrict" and "_Atomic" gdb-buildbot
@ 2020-03-31  1:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-31  1:34 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/2565

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3293bbaffac9a22fc6d1a08ac6602a4a63b5e68b

Subject of commit:
        Add C parser support for "restrict" and "_Atomic"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/32/3293bbaffac9a22fc6d1a08ac6602a4a63b5e68b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/32/3293bbaffac9a22fc6d1a08ac6602a4a63b5e68b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/32/3293bbaffac9a22fc6d1a08ac6602a4a63b5e68b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-30 23:21 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAILs in mi-fortran-modules.exp gdb-buildbot
@ 2020-03-30 23:21 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-30 23:21 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/2564

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        ab44624cea74dca3e6d19c3275d9d5a8d381c084

Subject of commit:
        [gdb/testsuite] Fix check-read1 FAILs in mi-fortran-modules.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ab/ab44624cea74dca3e6d19c3275d9d5a8d381c084/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ab/ab44624cea74dca3e6d19c3275d9d5a8d381c084//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ab/ab44624cea74dca3e6d19c3275d9d5a8d381c084//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-30 21:33 [binutils-gdb] Add support for NetBSD threads in m68k-bsd-nat.c gdb-buildbot
@ 2020-03-30 21:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-30 21:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2563

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/Fedora-i686/15/154151a6e303fa4b17e3597e3434a1c5999df8e1/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/15/154151a6e303fa4b17e3597e3434a1c5999df8e1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-30 19:04 [binutils-gdb] m68k: bsd: Change type from char * to gdb_byte * gdb-buildbot
@ 2020-03-30 19:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-30 19:04 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/2562

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        bc10778499a971ab9ccecb074cc406d49e1ee608

Subject of commit:
        m68k: bsd: Change type from char * to gdb_byte *

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/bc/bc10778499a971ab9ccecb074cc406d49e1ee608/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bc/bc10778499a971ab9ccecb074cc406d49e1ee608//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bc/bc10778499a971ab9ccecb074cc406d49e1ee608//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-30 17:17 [binutils-gdb] Inherit m68k_bsd_nat_target from nbsd_nat_target gdb-buildbot
@ 2020-03-30 17:24 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-30 17:24 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2561

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/Fedora-i686/01/01a801176ea15ddfc988cade2e3d84c3b0abfec3/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/01/01a801176ea15ddfc988cade2e3d84c3b0abfec3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-30 15:05 [binutils-gdb] Define _KERNTYPES in m68k-bsd-nat.c gdb-buildbot
@ 2020-03-30 15:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-30 15:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2560

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/Fedora-i686/f9/f90280caf5b34ebd564809a7f66685efc79bbf6d/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/f9/f90280caf5b34ebd564809a7f66685efc79bbf6d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-30 12:51 [binutils-gdb] Add support for NetBSD threads in alpha-bsd-nat.c gdb-buildbot
@ 2020-03-30 12:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-30 12:51 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/2559

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        6def66f1404e58b376655f6fb622aeb9dfc0f587

Subject of commit:
        Add support for NetBSD threads in alpha-bsd-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6d/6def66f1404e58b376655f6fb622aeb9dfc0f587/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6d/6def66f1404e58b376655f6fb622aeb9dfc0f587//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6d/6def66f1404e58b376655f6fb622aeb9dfc0f587//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-30 11:04 [binutils-gdb] Remove unused code from alpha-bsd-nat.c gdb-buildbot
@ 2020-03-30 11:08 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-30 11:08 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2558

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/Fedora-i686/66/66eaca97ebd0f1b456ffe158fce73bafcce561bb/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/66/66eaca97ebd0f1b456ffe158fce73bafcce561bb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-30  6:46 [binutils-gdb] Define _KERNTYPES in alpha-bsd-nat.c gdb-buildbot
@ 2020-03-30  6:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-30  6:46 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/2556

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        2190cf067b87e804c59c0a0c14c8ae48deabfbf4

Subject of commit:
        Define _KERNTYPES in alpha-bsd-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/21/2190cf067b87e804c59c0a0c14c8ae48deabfbf4/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/21/2190cf067b87e804c59c0a0c14c8ae48deabfbf4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/21/2190cf067b87e804c59c0a0c14c8ae48deabfbf4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-30  4:57 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL in attach-many-short-lived-threads.exp gdb-buildbot
@ 2020-03-30  4:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-30  4:57 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2555

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        54c4382534f0c894434deca5eb89cd02661d6feb

Subject of commit:
        [gdb/testsuite] Fix check-read1 FAIL in attach-many-short-lived-threads.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/54/54c4382534f0c894434deca5eb89cd02661d6feb/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/54/54c4382534f0c894434deca5eb89cd02661d6feb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/54/54c4382534f0c894434deca5eb89cd02661d6feb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-30  1:01 [binutils-gdb] Inherit arm_netbsd_nat_target from nbsd_nat_target gdb-buildbot
@ 2020-03-30  1:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-30  1:01 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/2553

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        6018d381a00515933016c539d2fdc18ad0d304b8

Subject of commit:
        Inherit arm_netbsd_nat_target from nbsd_nat_target

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/60/6018d381a00515933016c539d2fdc18ad0d304b8/

*** 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 -> 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/Fedora-i686/60/6018d381a00515933016c539d2fdc18ad0d304b8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/60/6018d381a00515933016c539d2fdc18ad0d304b8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-29 23:15 [binutils-gdb] Add support for NetBSD threads in x86-bsd-nat.c gdb-buildbot
@ 2020-03-29 23:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-29 23:15 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/2552

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        013f99f035c49b000ca058db80ad15e00aa330dc

Subject of commit:
        Add support for NetBSD threads in x86-bsd-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/01/013f99f035c49b000ca058db80ad15e00aa330dc/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/01/013f99f035c49b000ca058db80ad15e00aa330dc//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/01/013f99f035c49b000ca058db80ad15e00aa330dc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-29 21:03 [binutils-gdb] Add support for threads in vax_bsd_nat_target gdb-buildbot
@ 2020-03-29 21:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-29 21:03 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/2551

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/Fedora-i686/62/6227b330d563add042066259e5f933c89a85b3b5/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/62/6227b330d563add042066259e5f933c89a85b3b5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-29 19:17 [binutils-gdb] Add explicit cast to fix build of vax-bsd-nat.c gdb-buildbot
@ 2020-03-29 19:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-29 19:26 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2550

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        12753073036aad1250b5e9a1bd6991c125150269

Subject of commit:
        Add explicit cast to fix build of vax-bsd-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/12/12753073036aad1250b5e9a1bd6991c125150269/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-print: cmd complete "frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/12/12753073036aad1250b5e9a1bd6991c125150269//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/12/12753073036aad1250b5e9a1bd6991c125150269//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-29 16:59 [binutils-gdb] Inherit vax_bsd_nat_target from nbsd_nat_target gdb-buildbot
@ 2020-03-29 16:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-29 16:59 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/2549

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        d5be5fa4207da00d039a1d5a040ba316e7092cbd

Subject of commit:
        Inherit vax_bsd_nat_target from nbsd_nat_target

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d5/d5be5fa4207da00d039a1d5a040ba316e7092cbd/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d5/d5be5fa4207da00d039a1d5a040ba316e7092cbd//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d5/d5be5fa4207da00d039a1d5a040ba316e7092cbd//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-29 11:26 [binutils-gdb] Define _KERNTYPES in ppc-nbsd-nat.c gdb-buildbot
@ 2020-03-29 11:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-29 11:26 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2546

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        52feded7781821d227db0be188e564698d29fe9e

Subject of commit:
        Define _KERNTYPES in ppc-nbsd-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/52/52feded7781821d227db0be188e564698d29fe9e/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/52/52feded7781821d227db0be188e564698d29fe9e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/52/52feded7781821d227db0be188e564698d29fe9e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-29  7:45 [binutils-gdb] Include netbsd-core.lo for all arm/mips NetBSD targets gdb-buildbot
@ 2020-03-29  7:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-29  7:45 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/2544

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        8b5d0a4f6ff67aa81275c705508e3f49accc8120

Subject of commit:
        Include netbsd-core.lo for all arm/mips NetBSD targets

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8b/8b5d0a4f6ff67aa81275c705508e3f49accc8120/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8b/8b5d0a4f6ff67aa81275c705508e3f49accc8120//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8b/8b5d0a4f6ff67aa81275c705508e3f49accc8120//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-29  5:57 [binutils-gdb] [gdb/testsuite] Fix unrecognized debug output level 'statement-frontiers' message gdb-buildbot
@ 2020-03-29  5:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-29  5:57 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2543

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        2ac70237d2458fb2eb5e73de6bb02a396b5bada0

Subject of commit:
        [gdb/testsuite] Fix unrecognized debug output level 'statement-frontiers' message

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2a/2ac70237d2458fb2eb5e73de6bb02a396b5bada0/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/2a/2ac70237d2458fb2eb5e73de6bb02a396b5bada0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2a/2ac70237d2458fb2eb5e73de6bb02a396b5bada0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-29  3:58 [binutils-gdb] [gdb/testsuite] Fix FAIL in gdb.base/printcmds.exp gdb-buildbot
@ 2020-03-29  3:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-29  3:58 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2542

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        09546b56ede31ca2b401e9b03466e8e1fb84d85f

Subject of commit:
        [gdb/testsuite] Fix FAIL in gdb.base/printcmds.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/09/09546b56ede31ca2b401e9b03466e8e1fb84d85f/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/09/09546b56ede31ca2b401e9b03466e8e1fb84d85f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/09/09546b56ede31ca2b401e9b03466e8e1fb84d85f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-28 21:57 [binutils-gdb] Change extension language pretty-printers to use value API gdb-buildbot
@ 2020-03-28 21:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-28 21:57 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/2539

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        42331a1ea2a13ce15ec202c5f0fbef3e5171253c

Subject of commit:
        Change extension language pretty-printers to use value API

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/42/42331a1ea2a13ce15ec202c5f0fbef3e5171253c/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/42/42331a1ea2a13ce15ec202c5f0fbef3e5171253c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/42/42331a1ea2a13ce15ec202c5f0fbef3e5171253c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-28 18:59 [binutils-gdb] Change print_field_values to use value-based API gdb-buildbot
@ 2020-03-28 18:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-28 18:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2538

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3a916a975745f386cabbaba64531ed9b5f8be509

Subject of commit:
        Change print_field_values to use value-based API

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3a/3a916a975745f386cabbaba64531ed9b5f8be509/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3a/3a916a975745f386cabbaba64531ed9b5f8be509//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3a/3a916a975745f386cabbaba64531ed9b5f8be509//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-28 11:56 [binutils-gdb] Convert ada_val_print_ref to value-based API gdb-buildbot
@ 2020-03-28 11:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-28 11:56 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/2534

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/Fedora-i686/2e/2e088f8b6ea61fa9db1b592cbd4a6aa80b4e0ab5/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2e/2e088f8b6ea61fa9db1b592cbd4a6aa80b4e0ab5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-28 10:09 [binutils-gdb] Introduce ada_value_print_num gdb-buildbot
@ 2020-03-28 10:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-28 10:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2533

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        39ef85a896e7efa0391a7ed14cc965fe1d46cbb9

Subject of commit:
        Introduce ada_value_print_num

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/39/39ef85a896e7efa0391a7ed14cc965fe1d46cbb9/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/39/39ef85a896e7efa0391a7ed14cc965fe1d46cbb9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/39/39ef85a896e7efa0391a7ed14cc965fe1d46cbb9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-28  8:03 [binutils-gdb] Rewrite ada_value_print_1 floating point case gdb-buildbot
@ 2020-03-28  8:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-28  8:03 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2532

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/Fedora-i686/b9/b9fa6e07980f901f2a3f99b7eed4356d3209a3c4/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/b9/b9fa6e07980f901f2a3f99b7eed4356d3209a3c4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-28  5:52 [binutils-gdb] Introduce ada_value_print_ptr gdb-buildbot
@ 2020-03-28  5:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-28  5:52 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/2531

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        416595d6409b1bd2e2f9862c133ca764688da77f

Subject of commit:
        Introduce ada_value_print_ptr

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/41/416595d6409b1bd2e2f9862c133ca764688da77f/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/41/416595d6409b1bd2e2f9862c133ca764688da77f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/41/416595d6409b1bd2e2f9862c133ca764688da77f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-28  2:53 [binutils-gdb] Rewrite ada_value_print_inner gdb-buildbot
@ 2020-03-28  2:53 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-28  2:53 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2530

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5b5e15ecddafc43de2da632aa68f935a879d9a91

Subject of commit:
        Rewrite ada_value_print_inner

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5b/5b5e15ecddafc43de2da632aa68f935a879d9a91/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5b/5b5e15ecddafc43de2da632aa68f935a879d9a91//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5b/5b5e15ecddafc43de2da632aa68f935a879d9a91//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-27 23:31 [binutils-gdb] Introduce cp_print_value gdb-buildbot
@ 2020-03-27 23:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-27 23:31 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/2528

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/Fedora-i686/fb/fbf54e7554e0dcd60e18b1821c5c127fb3eb48ff/

*** 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/Fedora-i686/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/Fedora-i686/fb/fbf54e7554e0dcd60e18b1821c5c127fb3eb48ff//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-27 21:17 [binutils-gdb] Introduce cp_print_value_fields and c_value_print_struct gdb-buildbot
@ 2020-03-27 21:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-27 21:17 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/2527

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/Fedora-i686/64/64b653ca7058bfd4f91879dea628809d398b488e/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/64/64b653ca7058bfd4f91879dea628809d398b488e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-27 19:29 [binutils-gdb] Introduce c_value_print_array gdb-buildbot
@ 2020-03-27 19:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-27 19:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2526

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/Fedora-i686/69/6999f067c1b30c1a2c3e41a0f68f74e459652560/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/69/6999f067c1b30c1a2c3e41a0f68f74e459652560//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-27 15:14 [binutils-gdb] Introduce c_value_print_int gdb-buildbot
@ 2020-03-27 15:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-27 15:14 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/2524

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/Fedora-i686/2f/2faac269d59e57a49cd9f9209e1d39e03e2744bc/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2f/2faac269d59e57a49cd9f9209e1d39e03e2744bc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-27 13:09 [binutils-gdb] Introduce c_value_print_ptr gdb-buildbot
@ 2020-03-27 13:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-27 13:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2523

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/Fedora-i686/da/da3e2c2923b5c16c47c962bc53ea96678ca6a0e5/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/da/da3e2c2923b5c16c47c962bc53ea96678ca6a0e5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-27 11:02 [binutils-gdb] Rewrite c_value_print_inner gdb-buildbot
@ 2020-03-27 11:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-27 11:02 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/2522

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/Fedora-i686/50/5083623134c2ac383a8d8412b6d3c530452fda51/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.cp/virtbase.exp: print *
PASS -> FAIL: gdb.cp/virtbase.exp: print *this
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/50/5083623134c2ac383a8d8412b6d3c530452fda51//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-27  9:12 [binutils-gdb] Introduce generic_value_print_complex gdb-buildbot
@ 2020-03-27  9:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-27  9:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2521

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4f412b6e31369f27725872391a70f0520883701c

Subject of commit:
        Introduce generic_value_print_complex

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4f/4f412b6e31369f27725872391a70f0520883701c/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4f/4f412b6e31369f27725872391a70f0520883701c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4f/4f412b6e31369f27725872391a70f0520883701c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-27  6:54 [binutils-gdb] Simplify generic_val_print_float gdb-buildbot
@ 2020-03-27  6:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-27  6:54 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/2520

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        f5354008862defe83fc6d3620d51da52f860f5bf

Subject of commit:
        Simplify generic_val_print_float

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f5/f5354008862defe83fc6d3620d51da52f860f5bf/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f5/f5354008862defe83fc6d3620d51da52f860f5bf//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f5/f5354008862defe83fc6d3620d51da52f860f5bf//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-27  4:59 [binutils-gdb] Introduce generic_value_print_char gdb-buildbot
@ 2020-03-27  4:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-27  4:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2519

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3eec3b05b9ecf5e726c606f0bba916e095dcbe98

Subject of commit:
        Introduce generic_value_print_char

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3e/3eec3b05b9ecf5e726c606f0bba916e095dcbe98/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3e/3eec3b05b9ecf5e726c606f0bba916e095dcbe98//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3e/3eec3b05b9ecf5e726c606f0bba916e095dcbe98//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-27  2:43 [binutils-gdb] Introduce generic_value_print_int gdb-buildbot
@ 2020-03-27  2:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-27  2:43 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/2518

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/Fedora-i686/fd/fdddfccba1cc4f70089873441b7e6c38de09ae37/

*** 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/Fedora-i686/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/Fedora-i686/fd/fdddfccba1cc4f70089873441b7e6c38de09ae37//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-27  0:56 [binutils-gdb] Introduce generic_value_print_bool gdb-buildbot
@ 2020-03-27  0:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-27  0:56 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/2517

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/Fedora-i686/6d/6dde752183769c712eb22f49a5b74bfadad4a6be/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/6d/6dde752183769c712eb22f49a5b74bfadad4a6be//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-26 22:46 [binutils-gdb] Simplify generic_val_print_func gdb-buildbot
@ 2020-03-26 22:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-26 22:46 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/2516

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4112d2e602fed7157ce6bb30f46969129633d0f2

Subject of commit:
        Simplify generic_val_print_func

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/41/4112d2e602fed7157ce6bb30f46969129633d0f2/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/41/4112d2e602fed7157ce6bb30f46969129633d0f2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/41/4112d2e602fed7157ce6bb30f46969129633d0f2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-26 20:56 [binutils-gdb] Remove generic_val_print_flags gdb-buildbot
@ 2020-03-26 20:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-26 20:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2515

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        65786af6265044c67b25db23267f942c73b6fc20

Subject of commit:
        Remove generic_val_print_flags

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/65/65786af6265044c67b25db23267f942c73b6fc20/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/65/65786af6265044c67b25db23267f942c73b6fc20//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/65/65786af6265044c67b25db23267f942c73b6fc20//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-26 18:28 [binutils-gdb] Fix generic_val_print_enum for value-based printing gdb-buildbot
@ 2020-03-26 18:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-26 18:28 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/2514

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/Fedora-i686/40/40f3ce189e3c16398f2e56442e6d8db5573587ee/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/40/40f3ce189e3c16398f2e56442e6d8db5573587ee//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-26 16:47 [binutils-gdb] Introduce generic_value_print_ptr gdb-buildbot
@ 2020-03-26 16:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-26 16:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2513

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a5b130bcb6f376b6a28d8378172ed3f9b92e9d9

Subject of commit:
        Introduce generic_value_print_ptr

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2a/2a5b130bcb6f376b6a28d8378172ed3f9b92e9d9/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2a/2a5b130bcb6f376b6a28d8378172ed3f9b92e9d9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2a/2a5b130bcb6f376b6a28d8378172ed3f9b92e9d9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-26 14:07 [binutils-gdb] Initial rewrite of generic_value_print gdb-buildbot
@ 2020-03-26 14:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-26 14:07 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/2512

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        abc66ce95eee79db058123b985e19dcfc03dc1a7

Subject of commit:
        Initial rewrite of generic_value_print

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ab/abc66ce95eee79db058123b985e19dcfc03dc1a7/

*** 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/Fedora-i686/ab/abc66ce95eee79db058123b985e19dcfc03dc1a7//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ab/abc66ce95eee79db058123b985e19dcfc03dc1a7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-26 12:19 [binutils-gdb] Convert Pascal to value-based API gdb-buildbot
@ 2020-03-26 12:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-26 12:19 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/2511

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        07a328583de159941b64bad3ca94f20185c905ed

Subject of commit:
        Convert Pascal to value-based API

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/07/07a328583de159941b64bad3ca94f20185c905ed/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/07/07a328583de159941b64bad3ca94f20185c905ed//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/07/07a328583de159941b64bad3ca94f20185c905ed//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-26  8:08 [binutils-gdb] Convert Fortran printing to value-based API gdb-buildbot
@ 2020-03-26  8:08 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-26  8:08 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/2509

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        6a95a1f58dd9dabcade13f7a332eed601baf25f8

Subject of commit:
        Convert Fortran printing to value-based API

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6a/6a95a1f58dd9dabcade13f7a332eed601baf25f8/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6a/6a95a1f58dd9dabcade13f7a332eed601baf25f8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6a/6a95a1f58dd9dabcade13f7a332eed601baf25f8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-26  6:14 [binutils-gdb] Convert Modula-2 printing to value-based API gdb-buildbot
@ 2020-03-26  6:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-26  6:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2508

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        59fcdac646cf4ed3168cd787a883d282b4d9de1f

Subject of commit:
        Convert Modula-2 printing to value-based API

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/59/59fcdac646cf4ed3168cd787a883d282b4d9de1f/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 21
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/59/59fcdac646cf4ed3168cd787a883d282b4d9de1f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/59/59fcdac646cf4ed3168cd787a883d282b4d9de1f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-26  2:22 [binutils-gdb] Convert Go printing to value-based API gdb-buildbot
@ 2020-03-26  2:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-26  2:22 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/2506

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/Fedora-i686/23/23b0f06be43054a9b182e7ea60a763c35302924a/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/23/23b0f06be43054a9b182e7ea60a763c35302924a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-26  0:35 [binutils-gdb] Convert Rust printing to value-based API gdb-buildbot
@ 2020-03-26  0:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-26  0:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2505

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        5f56f7cbd22219e84df3caece06f469c5063e5fb

Subject of commit:
        Convert Rust printing to value-based API

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5f/5f56f7cbd22219e84df3caece06f469c5063e5fb/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "| "
UNRESOLVED -> FAIL: gdb.base/shell.exp: cmd complete "|"
new FAIL: gdb.base/shell.exp: tab complete "pipe "
new FAIL: gdb.base/shell.exp: tab complete "| "
new FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5f/5f56f7cbd22219e84df3caece06f469c5063e5fb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5f/5f56f7cbd22219e84df3caece06f469c5063e5fb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-25 21:06 [binutils-gdb] Introduce ada_value_print_inner gdb-buildbot
@ 2020-03-25 21:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-25 21:06 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/2504

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/Fedora-i686/26/26792ee0345c09bd1c76f3ee0e16ed15ab7215b9/

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -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/Fedora-i686/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/Fedora-i686/26/26792ee0345c09bd1c76f3ee0e16ed15ab7215b9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-25 18:31 [binutils-gdb] Introduce f_value_print_innner gdb-buildbot
@ 2020-03-25 18:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-25 18: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/2502

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        24051bbe843abcdcc108542da195e009c3f19910

Subject of commit:
        Introduce f_value_print_innner

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/24/24051bbe843abcdcc108542da195e009c3f19910/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/24/24051bbe843abcdcc108542da195e009c3f19910//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/24/24051bbe843abcdcc108542da195e009c3f19910//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-25 16:43 [binutils-gdb] Introduce pascal_value_print_inner gdb-buildbot
@ 2020-03-25 16:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-25 16:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2501

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c0941be613054fe525891a2898e7d938b8e8ceed

Subject of commit:
        Introduce pascal_value_print_inner

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c0/c0941be613054fe525891a2898e7d938b8e8ceed/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c0/c0941be613054fe525891a2898e7d938b8e8ceed//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c0/c0941be613054fe525891a2898e7d938b8e8ceed//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-25 14:14 [binutils-gdb] Introduce m2_value_print_inner gdb-buildbot
@ 2020-03-25 14:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-25 14:14 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/2500

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/Fedora-i686/62/62c4663d3c59b53e622b2f83eeae7c8d47c656dd/

*** 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/Fedora-i686/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/Fedora-i686/62/62c4663d3c59b53e622b2f83eeae7c8d47c656dd//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-25 12:26 [binutils-gdb] Introduce c_value_print_inner gdb-buildbot
@ 2020-03-25 12:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-25 12:26 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/2499

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        621821900289e9ef3472dc430d6fcf4d55b301e2

Subject of commit:
        Introduce c_value_print_inner

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/62/621821900289e9ef3472dc430d6fcf4d55b301e2/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/62/621821900289e9ef3472dc430d6fcf4d55b301e2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/62/621821900289e9ef3472dc430d6fcf4d55b301e2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-25 10:31 [binutils-gdb] Make pascal_object_print_value_fields static gdb-buildbot
@ 2020-03-25 10:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-25 10:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2498

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        1e592a8ae0985645e61f6ffbfee064af8826b457

Subject of commit:
        Make pascal_object_print_value_fields static

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/1e/1e592a8ae0985645e61f6ffbfee064af8826b457/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1e/1e592a8ae0985645e61f6ffbfee064af8826b457//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1e/1e592a8ae0985645e61f6ffbfee064af8826b457//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-25  8:18 [binutils-gdb] Simplify c_val_print_array gdb-buildbot
@ 2020-03-25  8:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-25  8:18 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/2497

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/Fedora-i686/7f/7fe471e9ae8dbc61b898f7572fed31c4224a0b89/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/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/Fedora-i686/7f/7fe471e9ae8dbc61b898f7572fed31c4224a0b89//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-25  6:32 [binutils-gdb] Introduce value_print_array_elements gdb-buildbot
@ 2020-03-25  6:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-25  6: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/2496

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        d121c6ce897d34ae168f78cbdacacb109d4833e6

Subject of commit:
        Introduce value_print_array_elements

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d1/d121c6ce897d34ae168f78cbdacacb109d4833e6/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d1/d121c6ce897d34ae168f78cbdacacb109d4833e6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d1/d121c6ce897d34ae168f78cbdacacb109d4833e6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-25  4:41 [binutils-gdb] Two simple uses of value_print_scalar_formatted gdb-buildbot
@ 2020-03-25  4:41 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-25  4:41 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2495

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/Fedora-i686/4d/4dba70eee1fadcb3c1bb50ba17e0fe3512c84180/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/4d/4dba70eee1fadcb3c1bb50ba17e0fe3512c84180//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-25  2:33 [binutils-gdb] Introduce value_print_scalar_formatted gdb-buildbot
@ 2020-03-25  2:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-25  2:33 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/2494

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4f9ae810130bc4202ec1c5eae934900c542a9016

Subject of commit:
        Introduce value_print_scalar_formatted

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4f/4f9ae810130bc4202ec1c5eae934900c542a9016/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4f/4f9ae810130bc4202ec1c5eae934900c542a9016//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4f/4f9ae810130bc4202ec1c5eae934900c542a9016//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-25  0:45 [binutils-gdb] Introduce generic_value_print gdb-buildbot
@ 2020-03-25  0:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-25  0:46 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2493

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        156bfec999186e3eccaf51fa3b81280bf51dbaa4

Subject of commit:
        Introduce generic_value_print

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/15/156bfec999186e3eccaf51fa3b81280bf51dbaa4/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/15/156bfec999186e3eccaf51fa3b81280bf51dbaa4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/15/156bfec999186e3eccaf51fa3b81280bf51dbaa4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-24 22:28 [binutils-gdb] Introduce la_value_print_inner gdb-buildbot
@ 2020-03-24 22:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-24 22:28 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/2492

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2b4e573d62be3a59057895054b1b5faa67557ce6

Subject of commit:
        Introduce la_value_print_inner

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2b/2b4e573d62be3a59057895054b1b5faa67557ce6/

*** 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=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2b/2b4e573d62be3a59057895054b1b5faa67557ce6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2b/2b4e573d62be3a59057895054b1b5faa67557ce6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-24 20:04 [binutils-gdb] Use common_val_print in c-valprint.c gdb-buildbot
@ 2020-03-24 20:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-24 20:04 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/2491

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/Fedora-i686/a1/a1f6a07c3d1d3a34d36d4e49f0fd3c66554e41b2/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/printcmds.exp: print teststring2
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/a1/a1f6a07c3d1d3a34d36d4e49f0fd3c66554e41b2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-24 14:16 [binutils-gdb] Use common_val_print in f-valprint.c gdb-buildbot
@ 2020-03-24 14:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-24 14:16 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/2488

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/Fedora-i686/72/72a45c938438f33bf8e7de6a5f068ba31c8c1e36/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/72/72a45c938438f33bf8e7de6a5f068ba31c8c1e36//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-24 12:24 [binutils-gdb] Use common_val_print in riscv-tdep.c gdb-buildbot
@ 2020-03-24 12:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-24 12:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2487

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        040f66bd2d6aea4d35a2e5cb88b499799ee4c466

Subject of commit:
        Use common_val_print in riscv-tdep.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/04/040f66bd2d6aea4d35a2e5cb88b499799ee4c466/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/04/040f66bd2d6aea4d35a2e5cb88b499799ee4c466//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/04/040f66bd2d6aea4d35a2e5cb88b499799ee4c466//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-24 10:09 [binutils-gdb] Use common_val_print in mi-main.c gdb-buildbot
@ 2020-03-24 10:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-24 10:09 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/2486

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        a6e05a6c3a9439a7253d2eab7ee4fe760b4cc829

Subject of commit:
        Use common_val_print in mi-main.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a6/a6e05a6c3a9439a7253d2eab7ee4fe760b4cc829/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a6/a6e05a6c3a9439a7253d2eab7ee4fe760b4cc829//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a6/a6e05a6c3a9439a7253d2eab7ee4fe760b4cc829//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-24  8:13 [binutils-gdb] Use common_val_print in infcmd.c gdb-buildbot
@ 2020-03-24  8:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-24  8:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2485

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/Fedora-i686/34/3444c526a33e61aeff86cbe1184e765458007890/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/34/3444c526a33e61aeff86cbe1184e765458007890//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-24  6:13 [binutils-gdb] Introduce common_val_print_checked gdb-buildbot
@ 2020-03-24  6:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-24  6:13 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/2484

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c2a44efee1cbe5321a850c53f34e9c205a1d6ca0

Subject of commit:
        Introduce common_val_print_checked

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c2/c2a44efee1cbe5321a850c53f34e9c205a1d6ca0/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c2/c2a44efee1cbe5321a850c53f34e9c205a1d6ca0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c2/c2a44efee1cbe5321a850c53f34e9c205a1d6ca0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-24  4:26 [binutils-gdb] Refactor val_print and common_val_print gdb-buildbot
@ 2020-03-24  4:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-24  4:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2483

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        b0c26e99f50d6926dd628ec51c1e9a037c521ab5

Subject of commit:
        Refactor val_print and common_val_print

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b0/b0c26e99f50d6926dd628ec51c1e9a037c521ab5/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b0/b0c26e99f50d6926dd628ec51c1e9a037c521ab5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b0/b0c26e99f50d6926dd628ec51c1e9a037c521ab5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-24  2:07 [binutils-gdb] Use scoped_value_mark in value_print gdb-buildbot
@ 2020-03-24  2:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-24  2:07 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/2482

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        ce3acbe9fa876647649cc88f94264a5c56bf46a1

Subject of commit:
        Use scoped_value_mark in value_print

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ce/ce3acbe9fa876647649cc88f94264a5c56bf46a1/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ce/ce3acbe9fa876647649cc88f94264a5c56bf46a1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ce/ce3acbe9fa876647649cc88f94264a5c56bf46a1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-24  0:20 [binutils-gdb] gdb/testsuite: Remove paths and make test names unique gdb-buildbot
@ 2020-03-24  0:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-24  0:27 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2481

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        1b83d09cd503d7fde57c50db51d5780ee8df5fae

Subject of commit:
        gdb/testsuite: Remove paths and make test names unique

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/1b/1b83d09cd503d7fde57c50db51d5780ee8df5fae/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
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 -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1b/1b83d09cd503d7fde57c50db51d5780ee8df5fae//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1b/1b83d09cd503d7fde57c50db51d5780ee8df5fae//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-23 19:49 [binutils-gdb] Register NT_NETBSDCORE_AUXV (NetBSD-Core) gdb-buildbot
@ 2020-03-23 19:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-23 19:49 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/2479

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/Fedora-i686/9f/9fcbd8a90a92bf303c41be816040789e1ed6cf4e/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/9f/9fcbd8a90a92bf303c41be816040789e1ed6cf4e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-23 17:59 [binutils-gdb] Add support for non-contiguous memory regions gdb-buildbot
@ 2020-03-23 18:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-23 18:04 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2478

Author:
        Christophe Lyon <christophe.lyon@linaro.org>

Commit tested:
        abf874aafe3d717573e4a48bf0e3c6334e666a55

Subject of commit:
        Add support for non-contiguous memory regions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ab/abf874aafe3d717573e4a48bf0e3c6334e666a55/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ab/abf874aafe3d717573e4a48bf0e3c6334e666a55//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ab/abf874aafe3d717573e4a48bf0e3c6334e666a55//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-23 15:30 [binutils-gdb] x86: Check static link of dynamic objects gdb-buildbot
@ 2020-03-23 15:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-23 15:30 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/2477

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        74e10d1742f1b8312359c59a2af06c9e661252b3

Subject of commit:
        x86: Check static link of dynamic objects

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/74/74e10d1742f1b8312359c59a2af06c9e661252b3/

*** Diff to previous build ***
==============================================
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::"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/74/74e10d1742f1b8312359c59a2af06c9e661252b3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/74/74e10d1742f1b8312359c59a2af06c9e661252b3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-23 11:33 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp matching FAILs (2) gdb-buildbot
@ 2020-03-23 11:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-23 11:33 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/2475

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        2e9145ace2a520f942d74fea7df9458cc8a16523

Subject of commit:
        [gdb/testsuite] Fix mi-sym-info.exp matching FAILs (2)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2e/2e9145ace2a520f942d74fea7df9458cc8a16523/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "thread apply 1 frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 frame apply 1 print "
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2e/2e9145ace2a520f942d74fea7df9458cc8a16523//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2e/2e9145ace2a520f942d74fea7df9458cc8a16523//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-23  9:45 [binutils-gdb] Recognize aarch64 PT_GETREGS and PT_GETFPREGS notes on NetBSD gdb-buildbot
@ 2020-03-23  9:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-23  9:46 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2474

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        015ec493d8603095d212df443e7b75017b572455

Subject of commit:
        Recognize aarch64 PT_GETREGS and PT_GETFPREGS notes on NetBSD

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/01/015ec493d8603095d212df443e7b75017b572455/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/01/015ec493d8603095d212df443e7b75017b572455//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/01/015ec493d8603095d212df443e7b75017b572455//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-23  3:28 [binutils-gdb] Fix several mix up between octets and bytes in ELF program headers gdb-buildbot
@ 2020-03-23  3:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-23  3:28 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/2471

Author:
        Christian Eggers <ceggers@gmx.de>

Commit tested:
        666318230c54a348763927c80d085542d9890c42

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/Fedora-i686/66/666318230c54a348763927c80d085542d9890c42/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/66/666318230c54a348763927c80d085542d9890c42//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/66/666318230c54a348763927c80d085542d9890c42//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-23  1:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-23  1:42 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/2470

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/Fedora-i686/50/502794d4321dc17d5c9fb591bedc8761118b2943/

*** Diff to previous build ***
==============================================
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 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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/50/502794d4321dc17d5c9fb591bedc8761118b2943//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22 23:54 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp matching FAILs gdb-buildbot
@ 2020-03-22 23:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22 23:54 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/2469

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/Fedora-i686/49/49ba92c0a6765ee7dc3a773c1a044680d29cee0e/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/49/49ba92c0a6765ee7dc3a773c1a044680d29cee0e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22 22:06 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL in gdb.tui/corefile-run.exp gdb-buildbot
@ 2020-03-22 22:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22 22:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2468

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        301b21e0dfee41c7a93f41089428d5d03fee685b

Subject of commit:
        [gdb/testsuite] Fix check-read1 FAIL in gdb.tui/corefile-run.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/30/301b21e0dfee41c7a93f41089428d5d03fee685b/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-print: cmd complete "frame apply all print "
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 -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/30/301b21e0dfee41c7a93f41089428d5d03fee685b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/30/301b21e0dfee41c7a93f41089428d5d03fee685b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22 19:48 [binutils-gdb] Remove deprecated core file functions gdb-buildbot
@ 2020-03-22 19:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22 19:48 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/2467

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        6ba0a321037b748f0b1285c44af762021a380bd3

Subject of commit:
        Remove deprecated core file functions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6ba0a321037b748f0b1285c44af762021a380bd3/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6ba0a321037b748f0b1285c44af762021a380bd3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6ba0a321037b748f0b1285c44af762021a380bd3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22 17:57 [binutils-gdb] Change gdbserver to use existing gdbsupport gdb-buildbot
@ 2020-03-22 17:57 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22 17:57 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2466

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4635ff975351603e64da3cbdeec3b999ee842ac8

Subject of commit:
        Change gdbserver to use existing gdbsupport

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/46/4635ff975351603e64da3cbdeec3b999ee842ac8/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/46/4635ff975351603e64da3cbdeec3b999ee842ac8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/46/4635ff975351603e64da3cbdeec3b999ee842ac8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22 15:29 [binutils-gdb] Change gdbsupport not to rely on BFD gdb-buildbot
@ 2020-03-22 15:29 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22 15:29 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/2465

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        213291361b4ddb2d05b8c89bf47d23ca4306912e

Subject of commit:
        Change gdbsupport not to rely on BFD

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/21/213291361b4ddb2d05b8c89bf47d23ca4306912e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-ptype.exp: ptype vla1
PASS -> FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-allocated indexed 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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/21/213291361b4ddb2d05b8c89bf47d23ca4306912e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/21/213291361b4ddb2d05b8c89bf47d23ca4306912e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22 13:43 [binutils-gdb] Fix gdbserver build when intl already built gdb-buildbot
@ 2020-03-22 13:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22 13:43 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/2464

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        9a665d62266e75f0519f3a663784c458885b5c63

Subject of commit:
        Fix gdbserver build when intl already built

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9a/9a665d62266e75f0519f3a663784c458885b5c63/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9a/9a665d62266e75f0519f3a663784c458885b5c63//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9a/9a665d62266e75f0519f3a663784c458885b5c63//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22 11:51 [binutils-gdb] Cast to bfd_vma in arm-tdep.c gdb-buildbot
@ 2020-03-22 11:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22 11:51 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/2463

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/Fedora-i686/22/227031b2bf03e7735601845d6c420995740c8fca/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/22/227031b2bf03e7735601845d6c420995740c8fca//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22 10:02 [binutils-gdb] Don't use sprintf_vma for CORE_ADDR gdb-buildbot
@ 2020-03-22 10:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22 10:02 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/2462

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/Fedora-i686/53/53807e9f3d83bc0f67b9b9471cc60fb37182e5ab/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/53/53807e9f3d83bc0f67b9b9471cc60fb37182e5ab//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22  8:15 [binutils-gdb] Fix CORE_ADDR size assertion in symfile-mem.c gdb-buildbot
@ 2020-03-22  8:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22  8:15 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/2461

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/Fedora-i686/64/64f251023bcbd068861d4cb83b4e925083e0ea35/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/64/64f251023bcbd068861d4cb83b4e925083e0ea35//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22  6:26 [binutils-gdb] gdb: use foreach_with_prefix in gdb.base/break-interp.exp gdb-buildbot
@ 2020-03-22  6:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22  6:26 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2460

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/Fedora-i686/3f/3f512721a829ce7b2d38236917309a32f42faa99/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/3f/3f512721a829ce7b2d38236917309a32f42faa99//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22  4:09 [binutils-gdb] gdb: make gdb.arch/amd64-disp-step-avx.exp actually test displaced stepping gdb-buildbot
@ 2020-03-22  4:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22  4:09 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/2459

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        40310f30a51c1343b954d1fee7feb9a1d9455e9f

Subject of commit:
        gdb: make gdb.arch/amd64-disp-step-avx.exp actually test displaced stepping

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/40/40310f30a51c1343b954d1fee7feb9a1d9455e9f/

*** Diff to previous build ***
==============================================
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=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-i686/40/40310f30a51c1343b954d1fee7feb9a1d9455e9f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/40/40310f30a51c1343b954d1fee7feb9a1d9455e9f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-22  2:23 [binutils-gdb] Move gdb/selftest.m4 to gdbsupport/selftest.m4 gdb-buildbot
@ 2020-03-22  2:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22  2:23 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/2458

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        272cd5a31e7ff16fe46a5532e857b98229404c48

Subject of commit:
        Move gdb/selftest.m4 to gdbsupport/selftest.m4

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/27/272cd5a31e7ff16fe46a5532e857b98229404c48/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/27/272cd5a31e7ff16fe46a5532e857b98229404c48//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/27/272cd5a31e7ff16fe46a5532e857b98229404c48//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-22  0:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-22  0:36 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/2457

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/Fedora-i686/74/74cd3f9d7e2bc82a295011230dc5261cd1129b4f/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/74/74cd3f9d7e2bc82a295011230dc5261cd1129b4f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-21 22:48 [binutils-gdb] Move sourcing of development.sh to GDB_AC_COMMON gdb-buildbot
@ 2020-03-21 22:49 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-21 22:49 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2456

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/Fedora-i686/db/db6878ac5538661c8d66c916a533bd4268217fcb/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/db/db6878ac5538661c8d66c916a533bd4268217fcb//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-21 18:48 [binutils-gdb] Remove use of deprecated core functions (in NetBSD/ARM) gdb-buildbot
@ 2020-03-21 18:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-21 18:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2454

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        8dd8e1c7228d5dd57b3b36379718c806017988e1

Subject of commit:
        Remove use of deprecated core functions (in NetBSD/ARM)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8d/8dd8e1c7228d5dd57b3b36379718c806017988e1/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8d/8dd8e1c7228d5dd57b3b36379718c806017988e1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8d/8dd8e1c7228d5dd57b3b36379718c806017988e1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-21 14:51 [binutils-gdb] sim: ppc: netbsd: Sync errno codes with NetBSD 9.99.49 gdb-buildbot
@ 2020-03-21 14:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-21 14:51 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/2452

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        607c69321064f57595038d39af3328b0de73eb85

Subject of commit:
        sim: ppc: netbsd: Sync errno codes with NetBSD 9.99.49

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/60/607c69321064f57595038d39af3328b0de73eb85/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/60/607c69321064f57595038d39af3328b0de73eb85//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/60/607c69321064f57595038d39af3328b0de73eb85//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-21 10:50 [binutils-gdb] [gdb/testsuite] Avoid breakpoint in GLIBC in gdb.threads/execl.exp gdb-buildbot
@ 2020-03-21 10:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-21 10:50 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/2450

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        14e9c72c334205c0171d62e716c1fb65472a0eab

Subject of commit:
        [gdb/testsuite] Avoid breakpoint in GLIBC in gdb.threads/execl.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/14/14e9c72c334205c0171d62e716c1fb65472a0eab/

*** 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/Fedora-i686/14/14e9c72c334205c0171d62e716c1fb65472a0eab//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/14/14e9c72c334205c0171d62e716c1fb65472a0eab//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-21  9:02 [binutils-gdb] [gdb/testsuite] Fix internal buffer full error in gdb.fortran/module.exp gdb-buildbot
@ 2020-03-21  9:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-21  9:02 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/2449

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        e515d67ed61f7c588a3154589a8a25c7bef66d20

Subject of commit:
        [gdb/testsuite] Fix internal buffer full error in gdb.fortran/module.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e5/e515d67ed61f7c588a3154589a8a25c7bef66d20/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e5/e515d67ed61f7c588a3154589a8a25c7bef66d20//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e5/e515d67ed61f7c588a3154589a8a25c7bef66d20//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-21  7:15 [binutils-gdb] [gdb/testsuite] Fix dw2-ranges-base.exp FAIL with lib debuginfo gdb-buildbot
@ 2020-03-21  7:15 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-21  7:15 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/2448

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        307eafd8df3ec820bb62a71324aeed06b86ec050

Subject of commit:
        [gdb/testsuite] Fix dw2-ranges-base.exp FAIL with lib debuginfo

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/30/307eafd8df3ec820bb62a71324aeed06b86ec050/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/30/307eafd8df3ec820bb62a71324aeed06b86ec050//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/30/307eafd8df3ec820bb62a71324aeed06b86ec050//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-21  5:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-21  5:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2447

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/Fedora-i686/9a/9a2de3fc7f7c40da6e8d5553c29e6cb8a2430dc8/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/9a/9a2de3fc7f7c40da6e8d5553c29e6cb8a2430dc8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-21  3:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-21  3:19 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/2446

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/Fedora-i686/32/3217502e1ba7409676e192100a0147a49dd5ae7a/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print -"
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/32/3217502e1ba7409676e192100a0147a49dd5ae7a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-21  1:32 [binutils-gdb] [gdb/testsuite] Fix core file load FAIL in tls-core.exp gdb-buildbot
@ 2020-03-21  1:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-21  1:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2445

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        1281424ccf3d05410398f4f495443d9e54426f91

Subject of commit:
        [gdb/testsuite] Fix core file load FAIL in tls-core.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/12/1281424ccf3d05410398f4f495443d9e54426f91/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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/Fedora-i686/12/1281424ccf3d05410398f4f495443d9e54426f91//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/12/1281424ccf3d05410398f4f495443d9e54426f91//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-20 23:23 [binutils-gdb] Avoid infinite recursion in find_pc_sect_line gdb-buildbot
@ 2020-03-20 23:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-20 23:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2444

Author:
        Kevin Buettner <kevinb@redhat.com>

Commit tested:
        dd69bf7a78a489783c397f2552eeb7999defcb6a

Subject of commit:
        Avoid infinite recursion in find_pc_sect_line

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dd69bf7a78a489783c397f2552eeb7999defcb6a/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: cmd complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dd69bf7a78a489783c397f2552eeb7999defcb6a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dd69bf7a78a489783c397f2552eeb7999defcb6a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-20 21:10 [binutils-gdb] testsuite: use `pwd -W` to convert from Unix to Windows paths gdb-buildbot
@ 2020-03-20 21:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-20 21:10 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/2443

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        038b97fcd75a338a515fe7def5db142e6952ca7c

Subject of commit:
        testsuite: use `pwd -W` to convert from Unix to Windows paths

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/03/038b97fcd75a338a515fe7def5db142e6952ca7c/

*** 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/Fedora-i686/03/038b97fcd75a338a515fe7def5db142e6952ca7c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/03/038b97fcd75a338a515fe7def5db142e6952ca7c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-20 18:59 [binutils-gdb] gdb: enable -Wmissing-prototypes warning gdb-buildbot
@ 2020-03-20 18:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-20 18:59 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/2442

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        a0761e34f054767de6d6389929d27e9015fb299b

Subject of commit:
        gdb: enable -Wmissing-prototypes warning

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a0/a0761e34f054767de6d6389929d27e9015fb299b/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a0/a0761e34f054767de6d6389929d27e9015fb299b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a0/a0761e34f054767de6d6389929d27e9015fb299b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-20 17:08 [binutils-gdb] [gdb/testsuite] Set language in gdb.ada/minsym.exp gdb-buildbot
@ 2020-03-20 17:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-20 17:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2441

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        5308d1e77167b4bb133302d7a6f66e599abee420

Subject of commit:
        [gdb/testsuite] Set language in gdb.ada/minsym.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/53/5308d1e77167b4bb133302d7a6f66e599abee420/

*** Diff to previous build ***
==============================================
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
FAIL -> 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"
FAIL -> 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 | "
FAIL -> 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 $$
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/53/5308d1e77167b4bb133302d7a6f66e599abee420//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/53/5308d1e77167b4bb133302d7a6f66e599abee420//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-20 14:48 [binutils-gdb] [gdb/testsuite] Fix printf regexp in gdb.server/sysroot.exp gdb-buildbot
@ 2020-03-20 15:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-20 15:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2440

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/Fedora-i686/f8/f870f78fb2dc15cc5a4738d7ee592b39e2001c4e/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/f8/f870f78fb2dc15cc5a4738d7ee592b39e2001c4e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-20 11:07 [binutils-gdb] [gdb/testsuite] Fix stepi pattern in gdb.btrace/reconnect.exp gdb-buildbot
@ 2020-03-20 11:08 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-20 11:08 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/2438

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        5a13315d1c6993ab84075ff94797eb8c6da1f20b

Subject of commit:
        [gdb/testsuite] Fix stepi pattern in gdb.btrace/reconnect.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5a13315d1c6993ab84075ff94797eb8c6da1f20b/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5a13315d1c6993ab84075ff94797eb8c6da1f20b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5a13315d1c6993ab84075ff94797eb8c6da1f20b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-20  9:13 [binutils-gdb] Fix comment in ada-typeprint.c gdb-buildbot
@ 2020-03-20  9:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-20  9:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2437

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        e7a82140af00e632f06e27d0ec9ad1f4fb704d92

Subject of commit:
        Fix comment in ada-typeprint.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e7/e7a82140af00e632f06e27d0ec9ad1f4fb704d92/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e7/e7a82140af00e632f06e27d0ec9ad1f4fb704d92//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e7/e7a82140af00e632f06e27d0ec9ad1f4fb704d92//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-20  5:10 [binutils-gdb] [gdb/testsuite] Fix FAILs due to verbose in foll-fork.exp gdb-buildbot
@ 2020-03-20  5:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-20  5:10 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/2435

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        7462c383f9849aab40f156854a72f0a93305124a

Subject of commit:
        [gdb/testsuite] Fix FAILs due to verbose in foll-fork.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/74/7462c383f9849aab40f156854a72f0a93305124a/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/74/7462c383f9849aab40f156854a72f0a93305124a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/74/7462c383f9849aab40f156854a72f0a93305124a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-20  3:19 [binutils-gdb] [gdb/testsuite] Limit verbose scope in gdb.base/break-interp.exp gdb-buildbot
@ 2020-03-20  3:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-20  3:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2434

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        1c6c46a012a43aefb6183fa2dd16ec6db5751aa3

Subject of commit:
        [gdb/testsuite] Limit verbose scope in gdb.base/break-interp.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/1c/1c6c46a012a43aefb6183fa2dd16ec6db5751aa3/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1c/1c6c46a012a43aefb6183fa2dd16ec6db5751aa3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1c/1c6c46a012a43aefb6183fa2dd16ec6db5751aa3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-20  0:54 [binutils-gdb] asan: som: unknown read gdb-buildbot
@ 2020-03-20  0:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-20  0:54 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/2433

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        8248d21a5b8b7bb9970163b8b327f5ac2f857f33

Subject of commit:
        asan: som: unknown read

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/82/8248d21a5b8b7bb9970163b8b327f5ac2f857f33/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/82/8248d21a5b8b7bb9970163b8b327f5ac2f857f33//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/82/8248d21a5b8b7bb9970163b8b327f5ac2f857f33//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-19 22:11 [binutils-gdb] [gdb/testsuite] Fix missing uint8_t in gdb.fortran/logical.exp gdb-buildbot
@ 2020-03-20  0:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-20  0:02 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2432

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        44f41bb7a1568dbe2e4e642e6c3c2e9ba3d47d92

Subject of commit:
        [gdb/testsuite] Fix missing uint8_t in gdb.fortran/logical.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/44/44f41bb7a1568dbe2e4e642e6c3c2e9ba3d47d92/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/44/44f41bb7a1568dbe2e4e642e6c3c2e9ba3d47d92//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/44/44f41bb7a1568dbe2e4e642e6c3c2e9ba3d47d92//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-19 14:39 [binutils-gdb] [gdb/testsuite] Set EDITOR to true before using edit gdb-buildbot
@ 2020-03-19 14:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-19 14:39 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/2428

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/Fedora-i686/b7/b76f3a42371cb0d83a1128a434852447da76b5e9/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/b7/b76f3a42371cb0d83a1128a434852447da76b5e9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-19 12:51 [binutils-gdb] libctf: Mark bswap_identity_64 inline function as static gdb-buildbot
@ 2020-03-19 12:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-19 12:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2427

Author:
        John Baldwin <jhb@FreeBSD.org>

Commit tested:
        119789424b62321e74a18fc1c088ebf479d999c4

Subject of commit:
        libctf: Mark bswap_identity_64 inline function as static.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/11/119789424b62321e74a18fc1c088ebf479d999c4/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/11/119789424b62321e74a18fc1c088ebf479d999c4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/11/119789424b62321e74a18fc1c088ebf479d999c4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-19  6:48 [binutils-gdb] gdb: Add support for tracking the DWARF line table is-stmt field gdb-buildbot
@ 2020-03-19  6:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-19  6:48 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/2424

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        8c95582da858ac981f689a6f599acacb8c5c490f

Subject of commit:
        gdb: Add support for tracking the DWARF line table is-stmt field

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8c95582da858ac981f689a6f599acacb8c5c490f/

*** Diff to previous build ***
==============================================
new KPASS: gdb.cp/step-and-next-inline.exp: no_header: next step 1
new FAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 2
new KPASS: gdb.cp/step-and-next-inline.exp: no_header: next step 3
new KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 4
new KFAIL: gdb.cp/step-and-next-inline.exp: no_header: stepping tests
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8c95582da858ac981f689a6f599acacb8c5c490f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8c95582da858ac981f689a6f599acacb8c5c490f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-19  2:47 [binutils-gdb] ubsan: som: left shift of 1 by 31 places gdb-buildbot
@ 2020-03-19  2:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-19  2:47 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/2422

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        e10ac147c80240c2d0aa0a2ae2ec7f6a934c198f

Subject of commit:
        ubsan: som: left shift of 1 by 31 places

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e1/e10ac147c80240c2d0aa0a2ae2ec7f6a934c198f/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e1/e10ac147c80240c2d0aa0a2ae2ec7f6a934c198f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e1/e10ac147c80240c2d0aa0a2ae2ec7f6a934c198f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-19  1:00 [binutils-gdb] PR25648, objcopy SIGSEGV in ihex_write_record gdb-buildbot
@ 2020-03-19  1:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-19  1:00 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/2421

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        6b5e16ffd3e8886fa3fb90d63e3200fcc373848e

Subject of commit:
        PR25648, objcopy SIGSEGV in ihex_write_record

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6b5e16ffd3e8886fa3fb90d63e3200fcc373848e/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6b5e16ffd3e8886fa3fb90d63e3200fcc373848e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6b/6b5e16ffd3e8886fa3fb90d63e3200fcc373848e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-18 22:47 [binutils-gdb] x86: Also pass -P to $(CPP) when processing i386-opc.tbl gdb-buildbot
@ 2020-03-18 22:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-18 22:47 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/2420

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        384f368958f2a5bb083660e58e5f8a010e6ad429

Subject of commit:
        x86: Also pass -P to $(CPP) when processing i386-opc.tbl

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/38/384f368958f2a5bb083660e58e5f8a010e6ad429/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/38/384f368958f2a5bb083660e58e5f8a010e6ad429//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/38/384f368958f2a5bb083660e58e5f8a010e6ad429//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-18 20:59 [binutils-gdb] [gdb/testsuite] Fix tcl error in cached_file gdb-buildbot
@ 2020-03-18 21:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-18 21:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2419

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        0ba678c9ae62c20bb7f2370f51a4e9f1c8f2f409

Subject of commit:
        [gdb/testsuite] Fix tcl error in cached_file

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0ba678c9ae62c20bb7f2370f51a4e9f1c8f2f409/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-print: cmd complete "frame apply all print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply all print "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0ba678c9ae62c20bb7f2370f51a4e9f1c8f2f409//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0ba678c9ae62c20bb7f2370f51a4e9f1c8f2f409//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-18 16:28 [binutils-gdb] x86: use template for XOP integer comparison, shift, and rotate insns gdb-buildbot
@ 2020-03-18 16:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-18 16:28 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/2417

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        2f13234bc5e1a9fa50d555c746f2a0068014cbdc

Subject of commit:
        x86: use template for XOP integer comparison, shift, and rotate insns

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2f/2f13234bc5e1a9fa50d555c746f2a0068014cbdc/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2f/2f13234bc5e1a9fa50d555c746f2a0068014cbdc//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2f/2f13234bc5e1a9fa50d555c746f2a0068014cbdc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-18 14:40 [binutils-gdb] x86: use template for AVX/AVX512 floating point comparison insns gdb-buildbot
@ 2020-03-18 14:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-18 14:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2416

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        3fabc17903800a7a943b811a5a20166f9a220ad6

Subject of commit:
        x86: use template for AVX/AVX512 floating point comparison insns

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3fabc17903800a7a943b811a5a20166f9a220ad6/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3fabc17903800a7a943b811a5a20166f9a220ad6//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3fabc17903800a7a943b811a5a20166f9a220ad6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-18 12:19 [binutils-gdb] x86: use template for SSE floating point comparison insns gdb-buildbot
@ 2020-03-18 12:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-18 12:19 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/2415

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        3677e4c1746a459ac4562de1abe54f283c71dc1c

Subject of commit:
        x86: use template for SSE floating point comparison insns

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/36/3677e4c1746a459ac4562de1abe54f283c71dc1c/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/36/3677e4c1746a459ac4562de1abe54f283c71dc1c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/36/3677e4c1746a459ac4562de1abe54f283c71dc1c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-18 10:31 [binutils-gdb] x86: allow opcode templates to be templated gdb-buildbot
@ 2020-03-18 10:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-18 10:31 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/2414

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        4c4898e8f5a202d1985c3e69a4a3e05dcd63481a

Subject of commit:
        x86: allow opcode templates to be templated

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4c/4c4898e8f5a202d1985c3e69a4a3e05dcd63481a/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4c/4c4898e8f5a202d1985c3e69a4a3e05dcd63481a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4c/4c4898e8f5a202d1985c3e69a4a3e05dcd63481a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-18  8:37 [binutils-gdb] asan: wasm: Out-of-memory gdb-buildbot
@ 2020-03-18  8:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-18  8:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2413

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/Fedora-i686/2f/2f57795b8b3cb2c416e91a16bc932480248e30d7/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2f/2f57795b8b3cb2c416e91a16bc932480248e30d7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-17 21:13 [binutils-gdb] [gdb/testsuite] Fix testing build_executable result gdb-buildbot
@ 2020-03-17 21:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-17 21:13 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/2410

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/Fedora-i686/72/72fbdf834da070f900ecc078217f9011ee16d99e/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/72/72fbdf834da070f900ecc078217f9011ee16d99e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-17 19:25 [binutils-gdb] [gdb] Support anonymous typedef generated by gcc -feliminate-dwarf2-dups gdb-buildbot
@ 2020-03-17 19:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-17 19:28 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2409

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        e4003a3495bbdbcb28b3a87467a12b95d30e3b8a

Subject of commit:
        [gdb] Support anonymous typedef generated by gcc -feliminate-dwarf2-dups

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e4/e4003a3495bbdbcb28b3a87467a12b95d30e3b8a/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e4/e4003a3495bbdbcb28b3a87467a12b95d30e3b8a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e4/e4003a3495bbdbcb28b3a87467a12b95d30e3b8a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-17 17:06 [binutils-gdb] Remove some obsolete comments gdb-buildbot
@ 2020-03-17 17:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-17 17:06 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/2408

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/Fedora-i686/e8/e8932576355851be8bac0b0b86a3be4f2005e47f/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/e8/e8932576355851be8bac0b0b86a3be4f2005e47f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-17 14:51 [binutils-gdb] Pass thread_info pointer to various inferior control functions gdb-buildbot
@ 2020-03-17 14:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-17 14:51 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/2407

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        29734269a7d1f2909814ff9c518c295c9640d6f5

Subject of commit:
        Pass thread_info pointer to various inferior control functions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/29/29734269a7d1f2909814ff9c518c295c9640d6f5/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/29734269a7d1f2909814ff9c518c295c9640d6f5//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/29734269a7d1f2909814ff9c518c295c9640d6f5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-17 13:03 [binutils-gdb] Don't try to get the TIB address without an inferior gdb-buildbot
@ 2020-03-17 13:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-17 13:12 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2406

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        b7d64b29094ef58448c9b41bcde299fad2976237

Subject of commit:
        Don't try to get the TIB address without an inferior

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b7/b7d64b29094ef58448c9b41bcde299fad2976237/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b7/b7d64b29094ef58448c9b41bcde299fad2976237//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b7/b7d64b29094ef58448c9b41bcde299fad2976237//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-17 10:47 [binutils-gdb] [gdb/testsuite] Fix "text file busy" errors with cc-with-tweaks.exp gdb-buildbot
@ 2020-03-17 10:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-17 10:47 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/2405

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        436b5e99c8eef55433f2c1de35d8f960425aa4c1

Subject of commit:
        [gdb/testsuite] Fix "text file busy" errors with cc-with-tweaks.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/43/436b5e99c8eef55433f2c1de35d8f960425aa4c1/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/43/436b5e99c8eef55433f2c1de35d8f960425aa4c1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/43/436b5e99c8eef55433f2c1de35d8f960425aa4c1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-17  8:51 [binutils-gdb] [gdb,testsuite,doc,NEWS] Fix "the the" gdb-buildbot
@ 2020-03-17  8:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-17  8:51 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2404

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        09f2921cc95466db159cbf0476e1a8eeeee1806b

Subject of commit:
        [gdb,testsuite,doc,NEWS] Fix "the the".

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/09/09f2921cc95466db159cbf0476e1a8eeeee1806b/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/09/09f2921cc95466db159cbf0476e1a8eeeee1806b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/09/09f2921cc95466db159cbf0476e1a8eeeee1806b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-17  4:48 [binutils-gdb] gdbserver/gdbsupport: Add .dir-locals.el file gdb-buildbot
@ 2020-03-17  4:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-17  4:48 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/2402

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/Fedora-i686/20/20ea4a609c44e5795a57c7b409e99442f8a44a0d/

*** Diff to previous build ***
==============================================
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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/20/20ea4a609c44e5795a57c7b409e99442f8a44a0d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-17  2:25 [binutils-gdb] Fix an abort triggered when objcopy is used to set the "share" section flag on an ELF section gdb-buildbot
@ 2020-03-17  2:25 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-17  2:25 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/2401

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        a0dcf2970562c19140460a07b2c987714639cd7b

Subject of commit:
        Fix an abort triggered when objcopy is used to set the "share" section flag on an ELF section.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a0/a0dcf2970562c19140460a07b2c987714639cd7b/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a0/a0dcf2970562c19140460a07b2c987714639cd7b//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a0/a0dcf2970562c19140460a07b2c987714639cd7b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-17  0:36 [binutils-gdb] x86: reduce amount of various VCVT* templates gdb-buildbot
@ 2020-03-17  0:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-17  0:36 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/2400

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/Fedora-i686/bc/bc49bfd849a9291b61bbe314505a35d07e130347/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/bc/bc49bfd849a9291b61bbe314505a35d07e130347//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-16 21:27 [binutils-gdb] x86: drop/replace IgnoreSize gdb-buildbot
@ 2020-03-16 21:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-16 21:27 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2399

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        4873e2438cf87b14476459ca90b58ed8a7401181

Subject of commit:
        x86: drop/replace IgnoreSize

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/48/4873e2438cf87b14476459ca90b58ed8a7401181/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/48/4873e2438cf87b14476459ca90b58ed8a7401181//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/48/4873e2438cf87b14476459ca90b58ed8a7401181//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-16 20:38 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-16 20:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2398

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/Fedora-i686/67/672a349b01af9c566f0000e983ad96b8ba455b9a/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/67/672a349b01af9c566f0000e983ad96b8ba455b9a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-16 18:49 [binutils-gdb] x86: replace NoRex64 on VEX-encoded insns gdb-buildbot
@ 2020-03-16 18:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-16 18:58 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2397

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/Fedora-i686/4e/4ed21b58d4b8331806b9e88da18898235942f425/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
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.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/4e/4ed21b58d4b8331806b9e88da18898235942f425//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-16 16:33 [binutils-gdb] x86: drop Rex64 attribute gdb-buildbot
@ 2020-03-16 16:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-16 16:33 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/2396

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        643bb87079dd96aed99ff1572375a88179afcd15

Subject of commit:
        x86: drop Rex64 attribute

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/64/643bb87079dd96aed99ff1572375a88179afcd15/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/64/643bb87079dd96aed99ff1572375a88179afcd15//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/64/643bb87079dd96aed99ff1572375a88179afcd15//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-16 14:43 [binutils-gdb] x86: correct MPX insn w/o base or index encoding in 16-bit mode gdb-buildbot
@ 2020-03-16 14:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-16 14:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2395

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        a23b33b3d131f240b2525d9a24831b33f2b43e26

Subject of commit:
        x86: correct MPX insn w/o base or index encoding in 16-bit mode

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a2/a23b33b3d131f240b2525d9a24831b33f2b43e26/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a2/a23b33b3d131f240b2525d9a24831b33f2b43e26//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a2/a23b33b3d131f240b2525d9a24831b33f2b43e26//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-16 10:23 [binutils-gdb] x86: refine TPAUSE and UMWAIT gdb-buildbot
@ 2020-03-16 10:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-16 10:23 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/2393

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        b630c145c07e1995ea5442025f15e57a617b2560

Subject of commit:
        x86: refine TPAUSE and UMWAIT

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b6/b630c145c07e1995ea5442025f15e57a617b2560/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b6/b630c145c07e1995ea5442025f15e57a617b2560//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b6/b630c145c07e1995ea5442025f15e57a617b2560//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-16  8:32 [binutils-gdb] bfd: xtensa: fix PR ld/25630 gdb-buildbot
@ 2020-03-16  8:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-16  8:32 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2392

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/Fedora-i686/e1/e15a8da9c71336b06cb5f2706c3f6b7e6ddd95a3/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/e1/e15a8da9c71336b06cb5f2706c3f6b7e6ddd95a3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-16  6:19 [binutils-gdb] Use std::string for 'psargs' gdb-buildbot
@ 2020-03-16  6:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-16  6:19 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/2391

Author:
        John Baldwin <jhb@FreeBSD.org>

Commit tested:
        0afbabf05a1476244ef02407df531b6c7a4076dc

Subject of commit:
        Use std::string for 'psargs'.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0a/0afbabf05a1476244ef02407df531b6c7a4076dc/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0a/0afbabf05a1476244ef02407df531b6c7a4076dc//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0a/0afbabf05a1476244ef02407df531b6c7a4076dc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-16  4:30 [binutils-gdb] gdbsupport/configure.ac: source development.sh gdb-buildbot
@ 2020-03-16  4:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-16  4:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2390

Author:
        Vyacheslav Petrishchev <vyachemail@gmail.com>

Commit tested:
        3d1e5a43cbe1780ea66df0fe091998ee61177899

Subject of commit:
        gdbsupport/configure.ac: source development.sh

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3d/3d1e5a43cbe1780ea66df0fe091998ee61177899/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/3d/3d1e5a43cbe1780ea66df0fe091998ee61177899//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3d/3d1e5a43cbe1780ea66df0fe091998ee61177899//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-16  0:44 [binutils-gdb] gdb, gdbserver, gdbsupport: add .gitattributes files gdb-buildbot
@ 2020-03-16  0:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-16  0:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2388

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        842806cb6f1c321666dd086a79a0fdfbd35497ed

Subject of commit:
        gdb, gdbserver, gdbsupport: add .gitattributes files

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/84/842806cb6f1c321666dd086a79a0fdfbd35497ed/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/84/842806cb6f1c321666dd086a79a0fdfbd35497ed//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/84/842806cb6f1c321666dd086a79a0fdfbd35497ed//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-15 22:36 [binutils-gdb] [gdb/testsuite] Update maint.exp for string cache gdb-buildbot
@ 2020-03-15 22:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-15 22:36 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/2387

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        50a3cc5d71012a18f53f099cc18b7fa073cd83bd

Subject of commit:
        [gdb/testsuite] Update maint.exp for string cache

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/50/50a3cc5d71012a18f53f099cc18b7fa073cd83bd/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/50/50a3cc5d71012a18f53f099cc18b7fa073cd83bd//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/50/50a3cc5d71012a18f53f099cc18b7fa073cd83bd//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-15 18:34 [binutils-gdb] Introduce objfile::intern gdb-buildbot
@ 2020-03-15 18:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-15 18:34 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/2385

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/Fedora-i686/be/be1e3d3eab0af2a140463757a1ba3977167551af/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/maint.exp: maint print statistics
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/be/be1e3d3eab0af2a140463757a1ba3977167551af//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-15 16:46 [binutils-gdb] Make "gnutarget" const gdb-buildbot
@ 2020-03-15 16:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-15 16:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2384

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/Fedora-i686/4e/4e7625fde223fd0c98f09f41fe924e7317a82e1a/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/4e/4e7625fde223fd0c98f09f41fe924e7317a82e1a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-15 14:19 [binutils-gdb] Implement debugging of WOW64 processes gdb-buildbot
@ 2020-03-15 14:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-15 14:19 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/2383

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        46f9f93119daaa8eceb7233a17759e10e858c9fd

Subject of commit:
        Implement debugging of WOW64 processes

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/46/46f9f93119daaa8eceb7233a17759e10e858c9fd/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/46/46f9f93119daaa8eceb7233a17759e10e858c9fd//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/46/46f9f93119daaa8eceb7233a17759e10e858c9fd//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-15 10:43 [binutils-gdb] gdb.fortran: Allow Flang kind printing in fortran testing gdb-buildbot
@ 2020-03-15 10:43 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-15 10:43 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/2381

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/Fedora-i686/0a/0a709cba00d36d490482d0e8673e323ac1e897a6/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/0a/0a709cba00d36d490482d0e8673e323ac1e897a6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-15  7:05 [binutils-gdb] sh_addralign inconsistent with sh_addr gdb-buildbot
@ 2020-03-15  7:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-15  7:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2379

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/Fedora-i686/23/233bf4f847b136705247e2f7f11bae41c72448a4/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/23/233bf4f847b136705247e2f7f11bae41c72448a4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-15  3:17 [binutils-gdb] Find tailcall frames before inline frames gdb-buildbot
@ 2020-03-15  3:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-15  3:17 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/2377

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/Fedora-i686/10/1009d92fc621bc4d017029b90a5bfab16e17fde5/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/10/1009d92fc621bc4d017029b90a5bfab16e17fde5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-14 23:19 [binutils-gdb] x86: Replace IgnoreSize/DefaultSize with MnemonicSize gdb-buildbot
@ 2020-03-14 23:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-14 23:19 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/2375

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        3cd7f3e3bdab2b9f5fa0005ce2b8333b46843c3e

Subject of commit:
        x86: Replace IgnoreSize/DefaultSize with MnemonicSize

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3c/3cd7f3e3bdab2b9f5fa0005ce2b8333b46843c3e/

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -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/Fedora-i686/3c/3cd7f3e3bdab2b9f5fa0005ce2b8333b46843c3e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3c/3cd7f3e3bdab2b9f5fa0005ce2b8333b46843c3e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-14 21:32 [binutils-gdb] gdb/fortran: Fix printing of logical true values for Flang gdb-buildbot
@ 2020-03-14 21:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-14 21: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/2374

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/Fedora-i686/5e/5e5d66b6a46c7b0353308bfb508b96a59f1addbf/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.fortran/logical.exp: var=l1: byte 0: set contents of byte at offset 0
new FAIL: gdb.fortran/logical.exp: var=l2: byte 0: set contents of byte at offset 0
new FAIL: gdb.fortran/logical.exp: var=l2: byte 1: set contents of byte at offset 1
new FAIL: gdb.fortran/logical.exp: var=l4: byte 0: set contents of byte at offset 0
new FAIL: gdb.fortran/logical.exp: var=l4: byte 1: set contents of byte at offset 1
new FAIL: gdb.fortran/logical.exp: var=l4: byte 2: set contents of byte at offset 2
new FAIL: gdb.fortran/logical.exp: var=l4: byte 3: set contents of byte at offset 3
new FAIL: gdb.fortran/logical.exp: var=l8: byte 0: set contents of byte at offset 0
new FAIL: gdb.fortran/logical.exp: var=l8: byte 1: set contents of byte at offset 1
new FAIL: gdb.fortran/logical.exp: var=l8: byte 2: set contents of byte at offset 2
new FAIL: gdb.fortran/logical.exp: var=l8: byte 3: set contents of byte at offset 3
new FAIL: gdb.fortran/logical.exp: var=l8: byte 4: set contents of byte at offset 4
new FAIL: gdb.fortran/logical.exp: var=l8: byte 5: set contents of byte at offset 5
new FAIL: gdb.fortran/logical.exp: var=l8: byte 6: set contents of byte at offset 6
new FAIL: gdb.fortran/logical.exp: var=l8: byte 7: set contents of byte at offset 7
new FAIL: gdb.fortran/logical.exp: var=l: byte 0: set contents of byte at offset 0
new FAIL: gdb.fortran/logical.exp: var=l: byte 1: set contents of byte at offset 1
new FAIL: gdb.fortran/logical.exp: var=l: byte 2: set contents of byte at offset 2
new FAIL: gdb.fortran/logical.exp: var=l: byte 3: set contents of byte at offset 3
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/5e/5e5d66b6a46c7b0353308bfb508b96a59f1addbf//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-14 19:45 [binutils-gdb] Rebase executable to match relocated base address gdb-buildbot
@ 2020-03-14 19:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-14 19:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2373

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/Fedora-i686/58/584cf46d0ab5960cca76bfaf414cee5641166868/

*** 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/Fedora-i686/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/Fedora-i686/58/584cf46d0ab5960cca76bfaf414cee5641166868//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-14 18:03 [binutils-gdb] The patch fixed invalid compilation of instruction LD IY, (HL) and disassemble of this and LD (HL), IX instruction. Also it update testsuit gdb-buildbot
@ 2020-03-14 18:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-14 18:17 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2372

Author:
        Sergey Belyashov <sergey.belyashov@gmail.com>

Commit tested:
        b8ba13856360d1cae00269a0ffe291cf573bb575

Subject of commit:
        The patch fixed invalid compilation of instruction LD IY,(HL) and disassemble of this and LD (HL),IX instruction. Also it update testsuit.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b8/b8ba13856360d1cae00269a0ffe291cf573bb575/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/dprintf-non-stop.exp: inferior stopped
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b8/b8ba13856360d1cae00269a0ffe291cf573bb575//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b8/b8ba13856360d1cae00269a0ffe291cf573bb575//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-14 16:07 [binutils-gdb] Fix printf of a convenience variable holding an inferior address gdb-buildbot
@ 2020-03-14 16:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-14 16:07 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2371

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/Fedora-i686/7b/7b973adce2b486518d3150db257b179e1b9a5d33/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/continue-all-already-running.exp: breakpoint hit
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/7b/7b973adce2b486518d3150db257b179e1b9a5d33//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-14 12:06 [binutils-gdb] Update GDB to use new AUXV entry types gdb-buildbot
@ 2020-03-14 12:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-14 12:06 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/2369

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/Fedora-i686/bb/bb7b70ab85fb9d185d1fa6bad192c90fe9c17ff3/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/bb/bb7b70ab85fb9d185d1fa6bad192c90fe9c17ff3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-14  8:26 [binutils-gdb] bfd_check_format_matches preserving matches vs. cleanups gdb-buildbot
@ 2020-03-14  8:26 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-14  8:26 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2367

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        f57140990f9be3232ffbc708fb1aade032052c80

Subject of commit:
        bfd_check_format_matches preserving matches vs. cleanups

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/f5/f57140990f9be3232ffbc708fb1aade032052c80/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f5/f57140990f9be3232ffbc708fb1aade032052c80//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/f5/f57140990f9be3232ffbc708fb1aade032052c80//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-14  6:22 [binutils-gdb] [gdb/testsuite] Fix gdb.mi/gdb2549.exp with check-read1 gdb-buildbot
@ 2020-03-14  6:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-14  6:22 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/2366

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        478e490a4df79436d678ca5f5f1d7c7ac7befa79

Subject of commit:
        [gdb/testsuite] Fix gdb.mi/gdb2549.exp with check-read1

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/47/478e490a4df79436d678ca5f5f1d7c7ac7befa79/

*** Diff to previous build ***
==============================================
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: tab complete "b test_op_delete::operator delete"
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/47/478e490a4df79436d678ca5f5f1d7c7ac7befa79//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/47/478e490a4df79436d678ca5f5f1d7c7ac7befa79//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-14  4:33 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-14  4:33 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/2365

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/Fedora-i686/1e/1ef44e861d58ba10674f107a79471852fbd27cda/

*** Diff to previous build ***
==============================================
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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -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/Fedora-i686/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/Fedora-i686/1e/1ef44e861d58ba10674f107a79471852fbd27cda//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-14  2:47 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp with check-read1 gdb-buildbot
@ 2020-03-14  2:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-14  2:47 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/2364

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        b98cc2cf1aecd4b9348252832b4b0bef727866cf

Subject of commit:
        [gdb/testsuite] Fix mi-sym-info.exp with check-read1

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b9/b98cc2cf1aecd4b9348252832b4b0bef727866cf/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b9/b98cc2cf1aecd4b9348252832b4b0bef727866cf//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b9/b98cc2cf1aecd4b9348252832b4b0bef727866cf//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-14  0:55 [binutils-gdb] Small clean up of use_displaced_stepping gdb-buildbot
@ 2020-03-14  0:55 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-14  0:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2363

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9822cb57f7570a3b2c8fd95ec2f7b9f9890e30a4

Subject of commit:
        Small clean up of use_displaced_stepping

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/98/9822cb57f7570a3b2c8fd95ec2f7b9f9890e30a4/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/98/9822cb57f7570a3b2c8fd95ec2f7b9f9890e30a4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/98/9822cb57f7570a3b2c8fd95ec2f7b9f9890e30a4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-13 22:01 [binutils-gdb] gdb: Allow GDB to _not_ load a previous command history gdb-buildbot
@ 2020-03-13 22:01 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-13 22:01 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/2362

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        63e163f24fe80fe1509527e6ccfcfb9622f5e99e

Subject of commit:
        gdb: Allow GDB to _not_ load a previous command history

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/63/63e163f24fe80fe1509527e6ccfcfb9622f5e99e/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/63/63e163f24fe80fe1509527e6ccfcfb9622f5e99e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/63/63e163f24fe80fe1509527e6ccfcfb9622f5e99e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-13 20:14 [binutils-gdb] Fix arm-netbsd build error: convert from FPA to VFP gdb-buildbot
@ 2020-03-13 20:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-13 20:14 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/2361

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/Fedora-i686/81/81b86b9702b5be9d022e9b0c96c1ee2ce339b5b9/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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 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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/81/81b86b9702b5be9d022e9b0c96c1ee2ce339b5b9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-13 18:10 [binutils-gdb] gdb/remote: Restore support for 'S' stop reply packet gdb-buildbot
@ 2020-03-13 18:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-13 18:10 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2360

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        24ed6739b699f329c2c45aedee5f8c7d2f54e493

Subject of commit:
        gdb/remote: Restore support for 'S' stop reply packet

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/24/24ed6739b699f329c2c45aedee5f8c7d2f54e493/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/24/24ed6739b699f329c2c45aedee5f8c7d2f54e493//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/24/24ed6739b699f329c2c45aedee5f8c7d2f54e493//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-13 13:34 [binutils-gdb] [gdb/testsuite] Add -lbl option in gdb_test_multiple gdb-buildbot
@ 2020-03-13 13:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-13 13:34 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/2358

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        590003dc0ea7653ead62899d850fba0a5c4a595e

Subject of commit:
        [gdb/testsuite] Add -lbl option in gdb_test_multiple

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/59/590003dc0ea7653ead62899d850fba0a5c4a595e/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/59/590003dc0ea7653ead62899d850fba0a5c4a595e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/59/590003dc0ea7653ead62899d850fba0a5c4a595e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-13  7:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-13  7:45 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/2355

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/Fedora-i686/a8/a84bb2a0790125f5fb5df65b7873fb6076164527/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/a8/a84bb2a0790125f5fb5df65b7873fb6076164527//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-13  5:52 [binutils-gdb] trad_unix_core_file_p: Return bfd_cleanup gdb-buildbot
@ 2020-03-13  5:52 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-13  5:52 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2354

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/Fedora-i686/72/728d32c496435cbd2529f7de9f5277d88c9c04e2/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/72/728d32c496435cbd2529f7de9f5277d88c9c04e2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-13  0:14 [binutils-gdb] miscellaneous SEC_SMALL_DATA gdb-buildbot
@ 2020-03-13  0:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-13  0:14 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/2351

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a4dd6c97bd5c7e2cc58f4d2a0b83145646f67cc7

Subject of commit:
        miscellaneous SEC_SMALL_DATA

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a4/a4dd6c97bd5c7e2cc58f4d2a0b83145646f67cc7/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a4/a4dd6c97bd5c7e2cc58f4d2a0b83145646f67cc7//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a4/a4dd6c97bd5c7e2cc58f4d2a0b83145646f67cc7//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-12 22:22 [binutils-gdb] ELF SEC_SMALL_DATA gdb-buildbot
@ 2020-03-12 22:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-12 22:27 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2350

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/Fedora-i686/bf/bf57746745ac0c0d2922de5af5f0d8527d7a585a/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/bf/bf57746745ac0c0d2922de5af5f0d8527d7a585a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-12 19:09 [binutils-gdb] elf_backend_section_flags and _bfd_elf_init_private_section_data gdb-buildbot
@ 2020-03-12 19:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-12 19:09 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/2349

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        8c803a2dd7d3d742a3d0071914f557ef465afe71

Subject of commit:
        elf_backend_section_flags and _bfd_elf_init_private_section_data

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8c803a2dd7d3d742a3d0071914f557ef465afe71/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8c803a2dd7d3d742a3d0071914f557ef465afe71//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/8c/8c803a2dd7d3d742a3d0071914f557ef465afe71//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-12 17:19 [binutils-gdb] alpha-coff: large memory allocation gdb-buildbot
@ 2020-03-12 17:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-12 17:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2348

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        7d4b2d2d29e2fc3af14d14412845615cc994cf91

Subject of commit:
        alpha-coff: large memory allocation

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7d/7d4b2d2d29e2fc3af14d14412845615cc994cf91/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/attach.exp: do_call_attach_tests: continue until exit
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7d/7d4b2d2d29e2fc3af14d14412845615cc994cf91//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7d/7d4b2d2d29e2fc3af14d14412845615cc994cf91//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-12 15:00 [binutils-gdb] alpha-vms: prevent endless recursion gdb-buildbot
@ 2020-03-12 15:00 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-12 15:00 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/2347

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        26f60d59391c851465e6db26bdedfeeecdcff155

Subject of commit:
        alpha-vms: prevent endless recursion

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/26/26f60d59391c851465e6db26bdedfeeecdcff155/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/26/26f60d59391c851465e6db26bdedfeeecdcff155//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/26/26f60d59391c851465e6db26bdedfeeecdcff155//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-12 12:45 [binutils-gdb] alpha-vms: error paths not freeing memory and malloc result checks gdb-buildbot
@ 2020-03-12 12:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-12 12:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2346

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        9cb56943d7f8de419d15e7ff1614d342b4682340

Subject of commit:
        alpha-vms: error paths not freeing memory and malloc result checks

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9c/9cb56943d7f8de419d15e7ff1614d342b4682340/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9c/9cb56943d7f8de419d15e7ff1614d342b4682340//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9c/9cb56943d7f8de419d15e7ff1614d342b4682340//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-11 23:24 [binutils-gdb] Fix comment for 'gdb_dlopen' gdb-buildbot
@ 2020-03-11 23:24 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-11 23:24 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/2342

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/Fedora-i686/d7/d7592e974706637058867b02626c52a30ef0a2ee/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/d7/d7592e974706637058867b02626c52a30ef0a2ee//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-11 21:36 [binutils-gdb] Fix SVE-related failure in gdb.arch/aarch64-fp.exp gdb-buildbot
@ 2020-03-11 21:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-11 21:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2341

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/Fedora-i686/f7/f7a7000d486f6fc456e9332214b89d01c3639fb1/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/f7/f7a7000d486f6fc456e9332214b89d01c3639fb1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-11 19:08 [binutils-gdb] Fix gdb.arch/aarch64-dbreg-contents.exp build failures gdb-buildbot
@ 2020-03-11 19:08 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-11 19:08 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/2340

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/Fedora-i686/71/718e081605e86b7421afc1b3ab2e4918292dd254/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/71/718e081605e86b7421afc1b3ab2e4918292dd254//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-11 17:21 [binutils-gdb] [gdb] Don't set initial language using previous language gdb-buildbot
@ 2020-03-11 17:21 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-11 17:21 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/2339

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        658dadf0b02b618fe81e7b09ad930479941f2236

Subject of commit:
        [gdb] Don't set initial language using previous language

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/65/658dadf0b02b618fe81e7b09ad930479941f2236/

*** 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/Fedora-i686/65/658dadf0b02b618fe81e7b09ad930479941f2236//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/65/658dadf0b02b618fe81e7b09ad930479941f2236//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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-11 15:19 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-11 15:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2338

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/Fedora-i686/4e/4ebe487749c5a3bac19ccaf36fc734a0d29a990e/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/4e/4ebe487749c5a3bac19ccaf36fc734a0d29a990e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-11 12:58 [binutils-gdb] [gdb/testsuite] Fix psymtab expansion postponement in c-linkage-name.exp gdb-buildbot
@ 2020-03-11 12:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-11 12:58 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/2337

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        13c3a74afb50b240dbacfd60f91414eae50279ad

Subject of commit:
        [gdb/testsuite] Fix psymtab expansion postponement in c-linkage-name.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/13/13c3a74afb50b240dbacfd60f91414eae50279ad/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print "
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/13/13c3a74afb50b240dbacfd60f91414eae50279ad//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/13/13c3a74afb50b240dbacfd60f91414eae50279ad//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-11 11:10 [binutils-gdb] Harden gdb.arch/aarch64-pauth.exp and fix a failure gdb-buildbot
@ 2020-03-11 11:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-11 11:27 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2336

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/Fedora-i686/85/85d2d5bbee1c21c2e3e929cc68fe06d762b3073b/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/85/85d2d5bbee1c21c2e3e929cc68fe06d762b3073b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-11  7:23 [binutils-gdb] alpha-vms: large memory allocation gdb-buildbot
@ 2020-03-11  7:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-11  7:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2334

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        1b088c829ee812003d7601c7cf458dd394598719

Subject of commit:
        alpha-vms: large memory allocation

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/1b/1b088c829ee812003d7601c7cf458dd394598719/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: thread-specific breakpoint was deleted
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1b/1b088c829ee812003d7601c7cf458dd394598719//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/1b/1b088c829ee812003d7601c7cf458dd394598719//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-11  1:32 [binutils-gdb] mmix-mmo set SEC_DATA for .data section gdb-buildbot
@ 2020-03-11  1:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-11  1: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/2331

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        5f6028029146629b5fd5732e20c600b5837c20a9

Subject of commit:
        mmix-mmo set SEC_DATA for .data section

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5f/5f6028029146629b5fd5732e20c600b5837c20a9/

*** 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/Fedora-i686/5f/5f6028029146629b5fd5732e20c600b5837c20a9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5f/5f6028029146629b5fd5732e20c600b5837c20a9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-10 21:30 [binutils-gdb] gdb: Use std::abs instead of abs on LONGEST types gdb-buildbot
@ 2020-03-10 21:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-10 21:30 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/2329

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        3104d9ee223133b9f5be4ec96b3f986e4fbc893e

Subject of commit:
        gdb: Use std::abs instead of abs on LONGEST types

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/31/3104d9ee223133b9f5be4ec96b3f986e4fbc893e/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/31/3104d9ee223133b9f5be4ec96b3f986e4fbc893e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/31/3104d9ee223133b9f5be4ec96b3f986e4fbc893e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-10 17:14 [binutils-gdb] [gdb/testsuite] Fix spawn in tuiterm.exp gdb-buildbot
@ 2020-03-10 17:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-10 17:14 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/2327

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/Fedora-i686/c8/c8d4f6dfd9264d6ab5d14c2dde3628cc1e7dd75f/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/c8/c8d4f6dfd9264d6ab5d14c2dde3628cc1e7dd75f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-10 15:25 [binutils-gdb] _bfd_xcoff_read_ar_hdr tidy gdb-buildbot
@ 2020-03-10 15:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-10 15:32 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2326

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/Fedora-i686/05/05f52dc2e1359fc4f69fab5c39fdfdf5efe93a15/

*** 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/Fedora-i686/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/Fedora-i686/05/05f52dc2e1359fc4f69fab5c39fdfdf5efe93a15//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-10 13:06 [binutils-gdb] bfd_stat_arch_elt buffer overflow gdb-buildbot
@ 2020-03-10 13:06 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-10 13:06 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2325

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/Fedora-i686/ff/ff69a8949bb65c9eb64ea03ee1492902c2620c8c/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/ff/ff69a8949bb65c9eb64ea03ee1492902c2620c8c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-10  9:35 [binutils-gdb] Specialize partial_symtab for DWARF include files gdb-buildbot
@ 2020-03-10  9:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-10  9:35 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/2324

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        b83470bfa7ca200b1c99caac5f6d56bffe0261d0

Subject of commit:
        Specialize partial_symtab for DWARF include files

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b8/b83470bfa7ca200b1c99caac5f6d56bffe0261d0/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b8/b83470bfa7ca200b1c99caac5f6d56bffe0261d0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b8/b83470bfa7ca200b1c99caac5f6d56bffe0261d0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-10  9:09 [binutils-gdb] Remove casts from dwarf2/index-write.c gdb-buildbot
@ 2020-03-10  9:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-10  9:09 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/2323

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        edfe0a0c6561cf838f3f885c22940025a826d900

Subject of commit:
        Remove casts from dwarf2/index-write.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ed/edfe0a0c6561cf838f3f885c22940025a826d900/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ed/edfe0a0c6561cf838f3f885c22940025a826d900//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ed/edfe0a0c6561cf838f3f885c22940025a826d900//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-10  7:05 [binutils-gdb] Add debuginfod support to GDB gdb-buildbot
@ 2020-03-10  7:05 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-10  7:05 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2322

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/Fedora-i686/0d/0d79cdc494d5eb9db26a602d62c92d49f83f407e/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
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.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/0d/0d79cdc494d5eb9db26a602d62c92d49f83f407e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-10  3:17 [binutils-gdb] Move more declarations from dwarf2/loc.h to dwarf2/read.h gdb-buildbot
@ 2020-03-10  3:17 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-10  3:17 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/2320

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/Fedora-i686/d4/d4c9a4f87ddbbb79d852f59ee1723e03294540c2/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/d4/d4c9a4f87ddbbb79d852f59ee1723e03294540c2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-10  1:29 [binutils-gdb] [gdb] Don't set initial language if set manually gdb-buildbot
@ 2020-03-10  1:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-10  1:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2319

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        0dce428051fd2cf07f9d38e9efe2dbb5d8f7fbef

Subject of commit:
        [gdb] Don't set initial language if set manually

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0dce428051fd2cf07f9d38e9efe2dbb5d8f7fbef/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0dce428051fd2cf07f9d38e9efe2dbb5d8f7fbef//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0dce428051fd2cf07f9d38e9efe2dbb5d8f7fbef//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-09 23:11 [binutils-gdb] Archive sanity checks gdb-buildbot
@ 2020-03-09 23:11 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-09 23:11 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/2318

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/Fedora-i686/02/02f7e7eed956b99ab2e80f8974fbe59e1d9b0dff/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/02/02f7e7eed956b99ab2e80f8974fbe59e1d9b0dff//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-09 21:24 [binutils-gdb] Re: vms buffer overflows and large memory allocation gdb-buildbot
@ 2020-03-09 21:36 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-09 21:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2317

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/Fedora-i686/cc/cc4c4f40a2b46e355684e450f59154cece591c39/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/cc/cc4c4f40a2b46e355684e450f59154cece591c39//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-09 14:58 [binutils-gdb] Indent labels gdb-buildbot
@ 2020-03-09 14:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-09 14:58 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/2314

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        dc1e8a474f904419abaa27da4be5b0f735a87255

Subject of commit:
        Indent labels

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/dc/dc1e8a474f904419abaa27da4be5b0f735a87255/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/dc/dc1e8a474f904419abaa27da4be5b0f735a87255//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/dc/dc1e8a474f904419abaa27da4be5b0f735a87255//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-09 13:09 [binutils-gdb] PR25593, --as-needed breaks DT_NEEDED order with linker plugin gdb-buildbot
@ 2020-03-09 13:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-09 13:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2313

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        e310298cf3fc02112ac0018260748828affa4061

Subject of commit:
        PR25593, --as-needed breaks DT_NEEDED order with linker plugin

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/e3/e310298cf3fc02112ac0018260748828affa4061/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e3/e310298cf3fc02112ac0018260748828affa4061//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/e3/e310298cf3fc02112ac0018260748828affa4061//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-09 10:46 [binutils-gdb] Limit bogus archive parsed_size gdb-buildbot
@ 2020-03-09 10:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-09 10:46 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/2312

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        b570b954bc5c1d6a6edb363c7bdba814bc1fd174

Subject of commit:
        Limit bogus archive parsed_size

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/b5/b570b954bc5c1d6a6edb363c7bdba814bc1fd174/

*** 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/Fedora-i686/b5/b570b954bc5c1d6a6edb363c7bdba814bc1fd174//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/b5/b570b954bc5c1d6a6edb363c7bdba814bc1fd174//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-09  8:56 [binutils-gdb] Merge upstream GCC changes for include/ and libiberty/ directories gdb-buildbot
@ 2020-03-09  8:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-09  8:56 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/2311

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        99e47410143dc8a5f699e73e56dd4c64ecc1c2e9

Subject of commit:
        Merge upstream GCC changes for include/ and libiberty/ directories

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/99/99e47410143dc8a5f699e73e56dd4c64ecc1c2e9/

*** 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=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/99/99e47410143dc8a5f699e73e56dd4c64ecc1c2e9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/99/99e47410143dc8a5f699e73e56dd4c64ecc1c2e9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-09  7:07 [binutils-gdb] gdb/fortran: Support negative array stride in one limited case gdb-buildbot
@ 2020-03-09  7:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-09  7:07 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/2310

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/Fedora-i686/9e/9e80cfa14ed0bdec20361ae78e74ccb937de3428/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/9e/9e80cfa14ed0bdec20361ae78e74ccb937de3428//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-09  5:14 [binutils-gdb] [AArch64] Fix typo in comment gdb-buildbot
@ 2020-03-09  5:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-09  5:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2309

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/Fedora-i686/09/09624f1fece637e17c0c31f6b7589466402ea407/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/09/09624f1fece637e17c0c31f6b7589466402ea407//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-09  3:14 [binutils-gdb] gdb/testsuite: Remove source file path from test name gdb-buildbot
@ 2020-03-09  3:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-09  3:14 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/2308

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        2078dbb210c7abc2c7ffee7aeefa1cc0ae375da0

Subject of commit:
        gdb/testsuite: Remove source file path from test name

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/20/2078dbb210c7abc2c7ffee7aeefa1cc0ae375da0/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/20/2078dbb210c7abc2c7ffee7aeefa1cc0ae375da0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/20/2078dbb210c7abc2c7ffee7aeefa1cc0ae375da0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-08 21:54 [binutils-gdb] [gdb/testsuite] Remove gcc/93866 xfail in methods.exp gdb-buildbot
@ 2020-03-08 21:54 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-08 21:54 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/2305

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/Fedora-i686/70/70d497007d097a68cbd5e78104619f4f88a09838/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/70/70d497007d097a68cbd5e78104619f4f88a09838//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-08 20:07 [binutils-gdb] Move dwarf2_get_die_type declaration to dwarf2/read.h gdb-buildbot
@ 2020-03-08 20:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-08 20:07 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/2304

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/Fedora-i686/8c/8cb5117ccfa578e6c531fcad4851be0f13b53f3b/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/8c/8cb5117ccfa578e6c531fcad4851be0f13b53f3b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-08 18:22 [binutils-gdb] gdb/copyright.py: Add generated files in gnulib/ to exclude list gdb-buildbot
@ 2020-03-08 18:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-08 18:22 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2303

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/Fedora-i686/c3/c325c44ef674de4c6ba2bfbb2eefb5f4661081cc/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c3/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/Fedora-i686/c3/c325c44ef674de4c6ba2bfbb2eefb5f4661081cc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-08 14:27 [binutils-gdb] Convert IS_TYPE_UNIT_GROUP to method gdb-buildbot
@ 2020-03-08 14:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-08 14:27 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/2301

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        197400e8009fa9a15ddc59cbf2cc32b0debd3424

Subject of commit:
        Convert IS_TYPE_UNIT_GROUP to method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/19/197400e8009fa9a15ddc59cbf2cc32b0debd3424/

*** 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/Fedora-i686/19/197400e8009fa9a15ddc59cbf2cc32b0debd3424//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/19/197400e8009fa9a15ddc59cbf2cc32b0debd3424//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-08 12:39 [binutils-gdb] Simplify setting of reading_partial_symbols gdb-buildbot
@ 2020-03-08 12:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-08 12:39 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/2300

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/Fedora-i686/76/7693576838f4fe66b2a2380425b5ad950c671b34/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/76/7693576838f4fe66b2a2380425b5ad950c671b34//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-08 10:45 [binutils-gdb] [gdb] Ensure listing of unused static var in info locals gdb-buildbot
@ 2020-03-08 10:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-08 10:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2299

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/Fedora-i686/a8/a88ef40d0f21342bb5ce01ce677846995ca0d133/

*** 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/Fedora-i686/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/Fedora-i686/a8/a88ef40d0f21342bb5ce01ce677846995ca0d133//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-08  8:47 [binutils-gdb] [gdb/testsuite] Fix layout next/prev/regs help message gdb-buildbot
@ 2020-03-08  8:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-08  8:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2298

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/Fedora-i686/c9/c9af65210c36aa0b5362b8ce2814ca8a5b09af92/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/c9/c9af65210c36aa0b5362b8ce2814ca8a5b09af92//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-08  4:51 [binutils-gdb] vms buffer overflows and large memory allocation gdb-buildbot
@ 2020-03-08  4:51 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-08  4:51 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/2296

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/Fedora-i686/c8/c893ce360a81bed57b9256f9d065541c2f8175c0/

*** 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/Fedora-i686/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/Fedora-i686/c8/c893ce360a81bed57b9256f9d065541c2f8175c0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-08  3:04 [binutils-gdb] gdb: update gnulib import gdb-buildbot
@ 2020-03-08  3:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-08  3:04 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/2295

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        5df4cba632201687fd8472663138fbeffaa8f315

Subject of commit:
        gdb: update gnulib import

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5d/5df4cba632201687fd8472663138fbeffaa8f315/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5d/5df4cba632201687fd8472663138fbeffaa8f315//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5d/5df4cba632201687fd8472663138fbeffaa8f315//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-08  1:16 [binutils-gdb] Make dwarf2_compile_expr_to_ax static gdb-buildbot
@ 2020-03-08  1:16 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-08  1:16 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/2294

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5707a07af2c282e87af1b060b4463fc083775649

Subject of commit:
        Make dwarf2_compile_expr_to_ax static

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/57/5707a07af2c282e87af1b060b4463fc083775649/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/57/5707a07af2c282e87af1b060b4463fc083775649//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/57/5707a07af2c282e87af1b060b4463fc083775649//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-07 23:21 [binutils-gdb] Fix cast in TUI_DISASM_WIN gdb-buildbot
@ 2020-03-07 23:21 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-07 23:21 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2293

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3b0fb49e305511c0f68d588bb8cf1a250ecd76f9

Subject of commit:
        Fix cast in TUI_DISASM_WIN

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3b/3b0fb49e305511c0f68d588bb8cf1a250ecd76f9/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3b/3b0fb49e305511c0f68d588bb8cf1a250ecd76f9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3b/3b0fb49e305511c0f68d588bb8cf1a250ecd76f9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-07 21:10 [binutils-gdb] Add "usage" text to all TUI command help gdb-buildbot
@ 2020-03-07 21:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-07 21:10 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/2292

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        283be8bfa4c19c60f81abbbb43e41b6ccfdff4a9

Subject of commit:
        Add "usage" text to all TUI command help

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/28/283be8bfa4c19c60f81abbbb43e41b6ccfdff4a9/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/28/283be8bfa4c19c60f81abbbb43e41b6ccfdff4a9//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/28/283be8bfa4c19c60f81abbbb43e41b6ccfdff4a9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-07 19:22 [binutils-gdb] Use error_no_arg in TUI gdb-buildbot
@ 2020-03-07 19:22 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-07 19:22 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/2291

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        ca793b969c39158aa5fb10508a13d2696bf9c6d2

Subject of commit:
        Use error_no_arg in TUI

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ca/ca793b969c39158aa5fb10508a13d2696bf9c6d2/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ca/ca793b969c39158aa5fb10508a13d2696bf9c6d2//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ca/ca793b969c39158aa5fb10508a13d2696bf9c6d2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-07 17:37 [binutils-gdb] Make some tui_source_window_base members "protected" gdb-buildbot
@ 2020-03-07 17:37 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-07 17:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2290

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/Fedora-i686/43/432b5c40220d80d539284f0ee8f6d081d39f0578/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/all-architectures-5.exp: tests: osabi=Darwin: arch=powerpc:e5500: endian=auto: set endian
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/43/432b5c40220d80d539284f0ee8f6d081d39f0578//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-07 15:39 [binutils-gdb] Allow TUI windows in Python gdb-buildbot
@ 2020-03-07 15:39 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-07 15:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2289

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        01b1af321f804ef6dfd40d3054c8757f31096ea8

Subject of commit:
        Allow TUI windows in Python

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/01/01b1af321f804ef6dfd40d3054c8757f31096ea8/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique file name: cmd complete "break -source '3ex"
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique file name: tab complete "break -source '3ex"
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/01/01b1af321f804ef6dfd40d3054c8757f31096ea8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/01/01b1af321f804ef6dfd40d3054c8757f31096ea8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-02-24  2:28 [binutils-gdb] Remove tui_set_win_with_focus gdb-buildbot
@ 2020-03-07 14:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-07 14:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2287

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        935c78c0468215e2f034f39b8285fa8bb17729b8

Subject of commit:
        Remove tui_set_win_with_focus

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/93/935c78c0468215e2f034f39b8285fa8bb17729b8/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/new-layout.exp: example layout shows assembly
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout example2
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: help layout h
PASS -> FAIL: gdb.tui/new-layout.exp: horizontal display
PASS -> FAIL: gdb.tui/new-layout.exp: left window box
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: left window box after shrink
PASS -> FAIL: gdb.tui/new-layout.exp: right window box
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after grow
PASS -> FAIL: gdb.tui/new-layout.exp: right window box after shrink
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example asm 1 status 0 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1 src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example src 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example zzq
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example {src 1} 1}
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout example2 {asm 1 status 0} 1 cmd 1
PASS -> UNRESOLVED: gdb.tui/new-layout.exp: tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/93/935c78c0468215e2f034f39b8285fa8bb17729b8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/93/935c78c0468215e2f034f39b8285fa8bb17729b8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-07 10:04 [binutils-gdb] Remove tui_delete_invisible_windows and tui_make_all_invisible gdb-buildbot
@ 2020-03-07 10:04 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-07 10:04 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/2284

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/Fedora-i686/86/865a5aec04b504d33c83baf5e05f6cdf95ac9dc3/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/86/865a5aec04b504d33c83baf5e05f6cdf95ac9dc3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-06 18:36 [binutils-gdb] Add the "tui new-layout" command gdb-buildbot
@ 2020-03-06 18:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-06 18:46 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/2276

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        ee325b61cd4389506d2dd63294c1ce1c64cb9d9f

Subject of commit:
        Add the "tui new-layout" command

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ee/ee325b61cd4389506d2dd63294c1ce1c64cb9d9f/

*** Diff to previous build ***
==============================================
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=off: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.tui/new-layout.exp: example layout shows assembly
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ee/ee325b61cd4389506d2dd63294c1ce1c64cb9d9f//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ee/ee325b61cd4389506d2dd63294c1ce1c64cb9d9f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-06 17:09 [binutils-gdb] Remove hard-coded TUI layouts gdb-buildbot
@ 2020-03-06 16:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-06 16:45 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/2275

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        416eb92d84ac0bc4b8aba137789f52d1f987cd54

Subject of commit:
        Remove hard-coded TUI layouts

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/41/416eb92d84ac0bc4b8aba137789f52d1f987cd54/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply level 0 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print "
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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 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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/41/416eb92d84ac0bc4b8aba137789f52d1f987cd54//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/41/416eb92d84ac0bc4b8aba137789f52d1f987cd54//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-06 15:05 [binutils-gdb] Reimplement "tui reg" command gdb-buildbot
@ 2020-03-06 15:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-06 15:07 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2274

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0dbc2fc759fc8b5eaa69d7b3b7d0c4cf4afb19be

Subject of commit:
        Reimplement "tui reg" command

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0dbc2fc759fc8b5eaa69d7b3b7d0c4cf4afb19be/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0dbc2fc759fc8b5eaa69d7b3b7d0c4cf4afb19be//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/0d/0dbc2fc759fc8b5eaa69d7b3b7d0c4cf4afb19be//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-06 12:45 [binutils-gdb] Reimplement TUI "C-x 1" binding gdb-buildbot
@ 2020-03-06 12:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-06 12:58 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/2273

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5afe342e2a61dcc49e42e68a86432e7f240af51d

Subject of commit:
        Reimplement TUI "C-x 1" binding

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5afe342e2a61dcc49e42e68a86432e7f240af51d/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5afe342e2a61dcc49e42e68a86432e7f240af51d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5a/5afe342e2a61dcc49e42e68a86432e7f240af51d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-06 10:32 [binutils-gdb] Simplify TUI C-x 2 binding gdb-buildbot
@ 2020-03-06 11:20 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-06 11:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2272

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/Fedora-i686/42/427326a826888b39a38c9f1b497aa981f37b72af/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
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.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/42/427326a826888b39a38c9f1b497aa981f37b72af//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-06  6:39 [binutils-gdb] Simplify tui_add_win_to_layout gdb-buildbot
@ 2020-03-06  7:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-06  7:12 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/2270

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/Fedora-i686/59/59b8b5d2477440a21b580dbf59281a9e2795e1dc/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
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
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/59/59b8b5d2477440a21b580dbf59281a9e2795e1dc//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
@ 2020-03-06  5:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-06  5:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2269

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/Fedora-i686/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-06  1:02 [binutils-gdb] Style field names in "print" gdb-buildbot
@ 2020-03-06  1:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-06  1:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2267

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/Fedora-i686/3f/3f0cbb04d0fbb0923f2972efa95a4c767592860b/

*** 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/Fedora-i686/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/Fedora-i686/3f/3f0cbb04d0fbb0923f2972efa95a4c767592860b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-05 16:53 [binutils-gdb] PR25585, PHDR segment not covered by LOAD segment gdb-buildbot
@ 2020-03-05 17:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-05 17:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2265

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        7b3c27152b5695177a2cd5adc0d7b0255f99aca0

Subject of commit:
        PR25585, PHDR segment not covered by LOAD segment

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/7b/7b3c27152b5695177a2cd5adc0d7b0255f99aca0/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7b/7b3c27152b5695177a2cd5adc0d7b0255f99aca0//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/7b/7b3c27152b5695177a2cd5adc0d7b0255f99aca0//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-05 13:39 [binutils-gdb] Add a mostlyclean target to gdbserver gdb-buildbot
@ 2020-03-05 15:11 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-05 15:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2264

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        dda42c0b7baba24d182a408574650ff162f44ec3

Subject of commit:
        Add a mostlyclean target to gdbserver

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dda42c0b7baba24d182a408574650ff162f44ec3/

*** 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/Fedora-i686/dd/dda42c0b7baba24d182a408574650ff162f44ec3//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dda42c0b7baba24d182a408574650ff162f44ec3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-05 12:39 [binutils-gdb] Update partial_symtab comment gdb-buildbot
@ 2020-03-05 12:56 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-05 12:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2263

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        d4d947ae37f84bb01eac7de69d0e363e608d0821

Subject of commit:
        Update partial_symtab comment

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d4/d4d947ae37f84bb01eac7de69d0e363e608d0821/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d4/d4d947ae37f84bb01eac7de69d0e363e608d0821//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d4/d4d947ae37f84bb01eac7de69d0e363e608d0821//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, 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; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-05 10:41 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2262

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/Fedora-i686/75/755251522afd2f33de7e64f8a30ddd732f30b2de/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> 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: 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: delimiter missing due to missing space
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
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: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
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 -> FAIL: gdb.base/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/75/755251522afd2f33de7e64f8a30ddd732f30b2de//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-05  1:24 [binutils-gdb] Check for null result from gdb_demangle gdb-buildbot
@ 2020-03-05  3:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-05  3:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2258

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/Fedora-i686/4f/4f180d5396741eb65badba70cf5077b7d48f8641/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/4f/4f180d5396741eb65badba70cf5077b7d48f8641//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-04 22:59 [binutils-gdb] Fuzzers whining about mach-o support gdb-buildbot
@ 2020-03-05  0:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-05  0:58 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2257

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/Fedora-i686/a4/a4425a57c7ad127b30cdfe271c870d5c8ebcfad7/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/a4/a4425a57c7ad127b30cdfe271c870d5c8ebcfad7//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-04 18:21 [binutils-gdb] Fix latent bug in dwarf2_find_containing_comp_unit gdb-buildbot
@ 2020-03-04 21:21 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-04 21:21 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2255

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/Fedora-i686/22/22b6cd70430d6bdaa3ae6c01414de8fd1f15a556/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/22/22b6cd70430d6bdaa3ae6c01414de8fd1f15a556//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-04 14:10 [binutils-gdb] RISC-V: Support the ISA-dependent CSR checking gdb-buildbot
@ 2020-03-04 18:40 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-04 18:40 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2254

Author:
        Nelson Chu <nelson.chu@sifive.com>

Commit tested:
        bd0cf5a6bae180f65f3b9298619d1bd695abcdd8

Subject of commit:
        RISC-V: Support the ISA-dependent CSR checking.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/bd/bd0cf5a6bae180f65f3b9298619d1bd695abcdd8/

*** Diff to previous build ***
==============================================
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 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
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bd/bd0cf5a6bae180f65f3b9298619d1bd695abcdd8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/bd/bd0cf5a6bae180f65f3b9298619d1bd695abcdd8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-04 12:20 [binutils-gdb] PR25569, PDP11 ld -s clobbers last data byte gdb-buildbot
@ 2020-03-04 16:45 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-04 16:45 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2253

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        dda2980f54a0c9437de047f3020f520dd1e0de6a

Subject of commit:
        PR25569, PDP11 ld -s clobbers last data byte

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dda2980f54a0c9437de047f3020f520dd1e0de6a/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dda2980f54a0c9437de047f3020f520dd1e0de6a//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/dd/dda2980f54a0c9437de047f3020f520dd1e0de6a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-04 15:09 [binutils-gdb] Make '{putchar,fputc}_unfiltered' use 'fputs_unfiltered' gdb-buildbot
@ 2020-03-04 15:03 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-04 15:03 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2252

Author:
        Sergio Durigan Junior <sergiodj@redhat.com>

Commit tested:
        3f702acd7d562d3a33c59d6398ae74058438d2c7

Subject of commit:
        Make '{putchar,fputc}_unfiltered' use 'fputs_unfiltered'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3f702acd7d562d3a33c59d6398ae74058438d2c7/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3f702acd7d562d3a33c59d6398ae74058438d2c7//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/3f/3f702acd7d562d3a33c59d6398ae74058438d2c7//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-04  7:35 [binutils-gdb] [gdb/testsuite] Fix hello.go xpass gdb-buildbot
@ 2020-03-04 12:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-04 12:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2251

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        a9c798035de33ccc3bc3e494449bbe931e900372

Subject of commit:
        [gdb/testsuite] Fix hello.go xpass

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/a9/a9c798035de33ccc3bc3e494449bbe931e900372/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a9/a9c798035de33ccc3bc3e494449bbe931e900372//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a9/a9c798035de33ccc3bc3e494449bbe931e900372//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-04  4:47 [binutils-gdb] gdbserver: finish turning the target ops vector into a class gdb-buildbot
@ 2020-03-04 10:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-04 10:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2250

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        52405d85ec748e4566b7893fa3cb9ff21c8a1bc4

Subject of commit:
        gdbserver: finish turning the target ops vector into a class

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/52/52405d85ec748e4566b7893fa3cb9ff21c8a1bc4/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/52/52405d85ec748e4566b7893fa3cb9ff21c8a1bc4//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/52/52405d85ec748e4566b7893fa3cb9ff21c8a1bc4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-04  4:21 [binutils-gdb] gdbserver: simply copy the pointer in 'set_target_ops' gdb-buildbot
@ 2020-03-04  8:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-04  8:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2249

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/Fedora-i686/47/478f9adff55f3b03d935d1384f6ee3597969c448/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/47/478f9adff55f3b03d935d1384f6ee3597969c448//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-04  6:28 [binutils-gdb] gdbserver: turn target op 'get_ipa_tdesc_idx' into a method gdb-buildbot
@ 2020-03-04  6:23 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-04  6:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2248

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        d633e8314093fd3ae9a5aec4fc25d86ebaea6ae8

Subject of commit:
        gdbserver: turn target op 'get_ipa_tdesc_idx' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d6/d633e8314093fd3ae9a5aec4fc25d86ebaea6ae8/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d6/d633e8314093fd3ae9a5aec4fc25d86ebaea6ae8//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d6/d633e8314093fd3ae9a5aec4fc25d86ebaea6ae8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-03 21:46 [binutils-gdb] gdbserver: turn target op 'supports_software_single_step' into a method gdb-buildbot
@ 2020-03-04  3:28 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-04  3:28 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2246

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/Fedora-i686/53/5303a34f9021a918a53376f215798dc65bf1a45c/

*** 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/Fedora-i686/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/Fedora-i686/53/5303a34f9021a918a53376f215798dc65bf1a45c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-03 17:14 [binutils-gdb] gdbserver: turn target ops 'thread_name' and 'thread_handle' into methods gdb-buildbot
@ 2020-03-04  0:47 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-04  0:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2245

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/Fedora-i686/7f/7f63b89b3a4229c2274f613111a907623853351f/

*** 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/Fedora-i686/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/Fedora-i686/7f/7f63b89b3a4229c2274f613111a907623853351f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-03 16:44 [binutils-gdb] gdbserver: turn breakpoint kind-related target ops into methods gdb-buildbot
@ 2020-03-03 23:35 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-03 23:35 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2244

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/Fedora-i686/d3/d367006fb7cf837210e2aa1944a11169a60039b4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
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-i686/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/Fedora-i686/d3/d367006fb7cf837210e2aa1944a11169a60039b4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-03 20:51 [binutils-gdb] gdbserver: turn target ops 'multifs_{open, readlink, unlink}' into methods gdb-buildbot
@ 2020-03-03 20:46 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-03 20:46 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2243

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        c9b7b80460e47ea4554960af6814de71b3e427cb

Subject of commit:
        gdbserver: turn target ops 'multifs_{open, readlink, unlink}' into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c9/c9b7b80460e47ea4554960af6814de71b3e427cb/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c9/c9b7b80460e47ea4554960af6814de71b3e427cb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c9/c9b7b80460e47ea4554960af6814de71b3e427cb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-03 10:31 [binutils-gdb] gdbserver: turn target op 'pid_to_exec_file' into a method gdb-buildbot
@ 2020-03-03 19:31 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-03 19:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2242

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        8247b8236bc5528993d9b2938bc0544a5acea21d

Subject of commit:
        gdbserver: turn target op 'pid_to_exec_file' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/82/8247b8236bc5528993d9b2938bc0544a5acea21d/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
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=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.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/82/8247b8236bc5528993d9b2938bc0544a5acea21d//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/82/8247b8236bc5528993d9b2938bc0544a5acea21d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-03  5:38 [binutils-gdb] gdbserver: turn btrace-related target ops into methods gdb-buildbot
@ 2020-03-03 15:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-03 15:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2240

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/Fedora-i686/79/79597bdd56f380555ed7075b39a9280a17bd7e90/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/79/79597bdd56f380555ed7075b39a9280a17bd7e90//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-03  3:18 [binutils-gdb] gdbserver: turn target op 'supports_agent' into a method gdb-buildbot
@ 2020-03-03 13:18 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-03 13:18 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2239

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        c0245cb999ec9692db1947240e865988a0c19c82

Subject of commit:
        gdbserver: turn target op 'supports_agent' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c0/c0245cb999ec9692db1947240e865988a0c19c82/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c0/c0245cb999ec9692db1947240e865988a0c19c82//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c0/c0245cb999ec9692db1947240e865988a0c19c82//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-03  0:51 [binutils-gdb] gdbserver: turn target op 'qxfer_libraries_svr4' into a method gdb-buildbot
@ 2020-03-03 10:58 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-03 10:58 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2238

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        974387bb254e7317e29205e51623ab4243f98d0c

Subject of commit:
        gdbserver: turn target op 'qxfer_libraries_svr4' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/97/974387bb254e7317e29205e51623ab4243f98d0c/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/97/974387bb254e7317e29205e51623ab4243f98d0c//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/97/974387bb254e7317e29205e51623ab4243f98d0c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-02 22:23 [binutils-gdb] gdbserver: turn target op 'supports_disable_randomization' into a method gdb-buildbot
@ 2020-03-03  9:07 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-03  9:07 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2237

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        c756403b171fc56562bf478c8602040bba3de856

Subject of commit:
        gdbserver: turn target op 'supports_disable_randomization' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c756403b171fc56562bf478c8602040bba3de856/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c756403b171fc56562bf478c8602040bba3de856//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/c7/c756403b171fc56562bf478c8602040bba3de856//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-02 20:50 [binutils-gdb] gdbserver: turn target op 'emit_ops' into a method gdb-buildbot
@ 2020-03-03  7:59 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-03  7:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2236

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        345dafadc282bad205190f7174840a834d72ec71

Subject of commit:
        gdbserver: turn target op 'emit_ops' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/34/345dafadc282bad205190f7174840a834d72ec71/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/34/345dafadc282bad205190f7174840a834d72ec71//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/34/345dafadc282bad205190f7174840a834d72ec71//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-02 15:32 [binutils-gdb] gdbserver: turn target op 'stabilize_threads' into a method gdb-buildbot
@ 2020-03-03  3:44 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-03  3:44 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2234

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        5c9eb2f2b53cb095dc6dbdd0654cec4ff9a53650

Subject of commit:
        gdbserver: turn target op 'stabilize_threads' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5c/5c9eb2f2b53cb095dc6dbdd0654cec4ff9a53650/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5c/5c9eb2f2b53cb095dc6dbdd0654cec4ff9a53650//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/5c/5c9eb2f2b53cb095dc6dbdd0654cec4ff9a53650//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-03  1:30 [binutils-gdb] gdbserver: turn target ops 'pause_all' and 'unpause_all' into methods gdb-buildbot
@ 2020-03-03  1:30 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-03  1:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2233

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        29e8dc09ff78e102ede0cdbb802cb771613bb8b1

Subject of commit:
        gdbserver: turn target ops 'pause_all' and 'unpause_all' into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/29/29e8dc09ff78e102ede0cdbb802cb771613bb8b1/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/29e8dc09ff78e102ede0cdbb802cb771613bb8b1//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/29e8dc09ff78e102ede0cdbb802cb771613bb8b1//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-02 23:38 [binutils-gdb] gdbserver: turn target op 'get_tib_address' into a method gdb-buildbot
@ 2020-03-02 23:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-02 23:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2232

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        4e2e869cb3336beb959a969e7b7c7897583ef16e

Subject of commit:
        gdbserver: turn target op 'get_tib_address' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/4e/4e2e869cb3336beb959a969e7b7c7897583ef16e/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4e/4e2e869cb3336beb959a969e7b7c7897583ef16e//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/4e/4e2e869cb3336beb959a969e7b7c7897583ef16e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-02  8:30 [binutils-gdb] gdbserver: turn target op 'thread_stopped' into a method gdb-buildbot
@ 2020-03-02 21:27 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-02 21:27 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2231

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/Fedora-i686/68/68119632a065f7d2a1bdd4c9524484c741544f24/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/68/68119632a065f7d2a1bdd4c9524484c741544f24//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-02  6:10 [binutils-gdb] gdbserver: turn target ops 'read_pc' and 'write_pc' into methods gdb-buildbot
@ 2020-03-02 19:14 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-02 19:14 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2230

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        770d8f6a51200bb4bf1228eba928e24e5d7fff86

Subject of commit:
        gdbserver: turn target ops 'read_pc' and 'write_pc' into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/77/770d8f6a51200bb4bf1228eba928e24e5d7fff86/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/77/770d8f6a51200bb4bf1228eba928e24e5d7fff86//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/77/770d8f6a51200bb4bf1228eba928e24e5d7fff86//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-02  4:20 [binutils-gdb] gdbserver: turn target op 'supports_tracepoints' into a method gdb-buildbot
@ 2020-03-02 17:13 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-02 17:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2229

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        290732bfb3805dd31fa640d022481dbb5d436988

Subject of commit:
        gdbserver: turn target op 'supports_tracepoints' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/29/290732bfb3805dd31fa640d022481dbb5d436988/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/290732bfb3805dd31fa640d022481dbb5d436988//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/29/290732bfb3805dd31fa640d022481dbb5d436988//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-02 12:46 [binutils-gdb] gdbserver: turn target op 'read_loadmap' into a method gdb-buildbot
@ 2020-03-02 12:42 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-02 12:42 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2227

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        9da41fdae03e8cb020d9a92a7c867ec98b7fd313

Subject of commit:
        gdbserver: turn target op 'read_loadmap' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/9d/9da41fdae03e8cb020d9a92a7c867ec98b7fd313/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9d/9da41fdae03e8cb020d9a92a7c867ec98b7fd313//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/9d/9da41fdae03e8cb020d9a92a7c867ec98b7fd313//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-01 18:53 [binutils-gdb] gdbserver: turn target op 'handle_monitor_command' into a method gdb-buildbot
@ 2020-03-02  9:02 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-02  9:02 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2225

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/Fedora-i686/55/55cf302157892947a18d1ecd0cdc89a49119b46b/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/55/55cf302157892947a18d1ecd0cdc89a49119b46b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-01 16:21 [binutils-gdb] gdbserver: turn target op 'handle_new_gdb_connection' into a method gdb-buildbot
@ 2020-03-02  6:48 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-02  6:48 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2224

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/Fedora-i686/fb/fb00dfcef00f12501e52d2259464ee85d81334c5/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/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/Fedora-i686/fb/fb00dfcef00f12501e52d2259464ee85d81334c5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-01 13:59 [binutils-gdb] gdbserver: turn target ops 'supports_{fork,vfork,exec}_events' into methods gdb-buildbot
@ 2020-03-02  5:11 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-02  5:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2223

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        9690a72ae54450aafaa55872ffcbf8b973660436

Subject of commit:
        gdbserver: turn target ops 'supports_{fork,vfork,exec}_events' into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/96/9690a72ae54450aafaa55872ffcbf8b973660436/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/96/9690a72ae54450aafaa55872ffcbf8b973660436//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/96/9690a72ae54450aafaa55872ffcbf8b973660436//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-02  3:25 [binutils-gdb] gdbserver: turn target op 'supports_multi_process' into a method gdb-buildbot
@ 2020-03-02  3:25 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-02  3:25 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2222

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        652aef7792f479564f01deada1a1804b83ccbffa

Subject of commit:
        gdbserver: turn target op 'supports_multi_process' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/65/652aef7792f479564f01deada1a1804b83ccbffa/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.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/Fedora-i686/65/652aef7792f479564f01deada1a1804b83ccbffa//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/65/652aef7792f479564f01deada1a1804b83ccbffa//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-01  7:16 [binutils-gdb] gdbserver: turn target op 'qxfer_siginfo' into a method gdb-buildbot
@ 2020-03-01 23:10 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-01 23:10 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2220

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        d7abedf7e7d18c8a32f63b0e44bee4a4f3b581ba

Subject of commit:
        gdbserver: turn target op 'qxfer_siginfo' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/d7/d7abedf7e7d18c8a32f63b0e44bee4a4f3b581ba/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d7/d7abedf7e7d18c8a32f63b0e44bee4a4f3b581ba//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/d7/d7abedf7e7d18c8a32f63b0e44bee4a4f3b581ba//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-01  4:32 [binutils-gdb] gdbserver: turn target op 'qxfer_osdata' into a method gdb-buildbot
@ 2020-03-01 21:12 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-01 21:12 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2219

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        2d0795ee38d46bc820333ba1f0e9a836029d0151

Subject of commit:
        gdbserver: turn target op 'qxfer_osdata' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2d/2d0795ee38d46bc820333ba1f0e9a836029d0151/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2d/2d0795ee38d46bc820333ba1f0e9a836029d0151//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/2d/2d0795ee38d46bc820333ba1f0e9a836029d0151//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-01  2:58 [binutils-gdb] gdbserver: turn target op 'hostio_last_error' into a method gdb-buildbot
@ 2020-03-01 19:09 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-01 19:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2218

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        ea06bbaaaa975331a42f2054551e78f588020462

Subject of commit:
        gdbserver: turn target op 'hostio_last_error' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/ea/ea06bbaaaa975331a42f2054551e78f588020462/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ea/ea06bbaaaa975331a42f2054551e78f588020462//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/ea/ea06bbaaaa975331a42f2054551e78f588020462//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-02-29 23:58 [binutils-gdb] gdbserver: turn target op 'get_tls_address' into a method gdb-buildbot
@ 2020-03-01 17:34 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-01 17:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2217

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        6e3fd7e948d158a04c0af7130e6648ad75aaba66

Subject of commit:
        gdbserver: turn target op 'get_tls_address' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/6e/6e3fd7e948d158a04c0af7130e6648ad75aaba66/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
new FAIL: gdb.server/server-kill-python.exp: ensure inferior is running
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6e/6e3fd7e948d158a04c0af7130e6648ad75aaba66//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/6e/6e3fd7e948d158a04c0af7130e6648ad75aaba66//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-01 15:43 [binutils-gdb] gdbserver: turn target op 'read_offsets' into a method gdb-buildbot
@ 2020-03-01 15:32 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-01 15:32 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2216

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        5203ae1e870191ef058c1b4590f9b9fbf6b594ed

Subject of commit:
        gdbserver: turn target op 'read_offsets' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/52/5203ae1e870191ef058c1b4590f9b9fbf6b594ed/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
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: cmd complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
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-thread-apply: cmd complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
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 -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
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 -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/shell.exp: cmd complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "| "
PASS -> FAIL: gdb.base/shell.exp: cmd complete "|"
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/style.exp: set width 30
PASS -> FAIL: gdb.base/with.exp: completion: cmd complete "with print elements unlimited -- "
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
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
PASS -> FAIL: gdb.tui/basic.exp: asm box
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: scroll down
PASS -> FAIL: gdb.tui/basic.exp: scroll right
PASS -> FAIL: gdb.tui/basic.exp: scroll up
PASS -> FAIL: gdb.tui/basic.exp: source box
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/corefile-run.exp: load corefile
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: asm: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no asm
PASS -> FAIL: gdb.tui/empty.exp: split: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no regs
PASS -> FAIL: gdb.tui/empty.exp: src-regs: 90x40: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 80x24: no source
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: box 1
PASS -> FAIL: gdb.tui/empty.exp: src: 90x40: no source
PASS -> FAIL: gdb.tui/list-before.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: initial source listing
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: file clears window
PASS -> FAIL: gdb.tui/main.exp: show main after file
PASS -> FAIL: gdb.tui/regs.exp: any register contents
PASS -> FAIL: gdb.tui/regs.exp: register box
PASS -> FAIL: gdb.tui/regs.exp: source at startup
PASS -> FAIL: gdb.tui/regs.exp: source box in regs layout
PASS -> FAIL: gdb.tui/resize.exp: source at startup
PASS -> FAIL: gdb.tui/resize.exp: source box after resize
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
PASS -> FAIL: gdb.tui/tui-layout-asm.exp: check asm box contents
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> FAIL: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> FAIL: gdb.tui/winheight.exp: larger source box
PASS -> FAIL: gdb.tui/winheight.exp: smaller source box
PASS -> FAIL: gdb.tui/winheight.exp: source box
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/52/5203ae1e870191ef058c1b4590f9b9fbf6b594ed//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/52/5203ae1e870191ef058c1b4590f9b9fbf6b594ed//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

* Failures on Fedora-i686, branch master
  2020-03-01  8:22 [binutils-gdb] gdbserver: turn target op '{supports_}stopped_by_sw_breakpoint' into a method gdb-buildbot
@ 2020-03-01  7:50 ` gdb-buildbot
  0 siblings, 0 replies; 8170+ messages in thread
From: gdb-buildbot @ 2020-03-01  7:50 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2212

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        84320c4ea740a0e374b2a0c3ce78209318d34065

Subject of commit:
        gdbserver: turn target op '{supports_}stopped_by_sw_breakpoint' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/84/84320c4ea740a0e374b2a0c3ce78209318d34065/

*** 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/Fedora-i686/84/84320c4ea740a0e374b2a0c3ce78209318d34065//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/84/84320c4ea740a0e374b2a0c3ce78209318d34065//xfail.table.gz>


^ permalink raw reply	[flat|nested] 8170+ messages in thread

end of thread, other threads:[~2020-07-22  5:11 UTC | newest]

Thread overview: 8170+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-09  6:08 [binutils-gdb] Fix problem that alias can be defined or not depending on the order gdb-buildbot
2020-06-09  6:08 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-09  6:19 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2020-06-09  6:42 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2020-06-09  6:54 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2020-06-09  7:24 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2020-06-09  7:41 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2020-06-09  8:41 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2020-06-09  8:58 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  -- strict thread matches above, loose matches on Subject: below --
2020-07-21  2:00 [binutils-gdb] Fixes for gdb.xml/tdesc-regs.exp gdb-buildbot
2020-07-21  2:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-20 12:58 [binutils-gdb] Don't write to inferior_ptid in ravenscar-thread.c gdb-buildbot
2020-07-20 12:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-19 21:36 [binutils-gdb] Don't write to inferior_ptid in btrace_fetch gdb-buildbot
2020-07-19 21:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-19 18:59 [binutils-gdb] Don't write to inferior_ptid in bsd-kvm.c gdb-buildbot
2020-07-19 18:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-19 13:51 [binutils-gdb] Don't write to inferior_ptid in darwin-nat.c gdb-buildbot
2020-07-19 13:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-19  8:38 [binutils-gdb] Don't write to inferior_ptid in go32-nat.c gdb-buildbot
2020-07-19  8:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-19  3:26 [binutils-gdb] Don't write to inferior_ptid in remote-sim.c gdb-buildbot
2020-07-19  3:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-18  6:34 [binutils-gdb] Don't write to inferior_ptid in gdbarch-selftests.c, mock address_space too gdb-buildbot
2020-07-18  6:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-17 20:08 [binutils-gdb] x86: also test alternative VMGEXIT encoding gdb-buildbot
2020-07-17 20:08 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-17  6:58 [binutils-gdb] gdb/regformats: remove unused regformats/reg-*.dat gdb-buildbot
2020-07-17  6:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-15 23:31 [binutils-gdb] gdb: Convert language la_collect_symbol_completion_matches field to a method gdb-buildbot
2020-07-15 23:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-15 20:55 [binutils-gdb] gdb: Convert language la_word_break_characters field to a method gdb-buildbot
2020-07-15 20:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-15 15:40 [binutils-gdb] gdb: Convert language la_compute_program field to a method gdb-buildbot
2020-07-15 15:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-15 10:20 [binutils-gdb] Use macros for TUI window names gdb-buildbot
2020-07-15 10:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-15  5:05 [binutils-gdb] Fix C-x 1 from gdb prompt gdb-buildbot
2020-07-15  5:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-14  8:34 [binutils-gdb] Rewrite target_read_string gdb-buildbot
2020-07-14  8:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-11 21:41 [binutils-gdb] RISC-V: Update the rebuild-csr-xml.sh gdb-buildbot
2020-07-11 21:41 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-11 19:12 [binutils-gdb] RISC-V: Drop the privileged spec v1.9 support gdb-buildbot
2020-07-11 19:12 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-11 14:13 [binutils-gdb] gdb: add mailing list and IRC information to --help gdb-buildbot
2020-07-11 14:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-11  6:44 [binutils-gdb] [PATCH]: aarch64: Refactor representation of system registers gdb-buildbot
2020-07-11  6:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-11  4:12 [binutils-gdb] PR26107, Compilation failure in pdp11.c gdb-buildbot
2020-07-11  4:12 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-10  3:16 [binutils-gdb] x86: fix {,V}MOV{L,H}PD disassembly gdb-buildbot
2020-07-10  3:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-09 14:50 [binutils-gdb] gdb: remove TYPE_FIELD_TYPE macro gdb-buildbot
2020-07-09 14:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-08 23:50 [binutils-gdb] ELF: Move tlsdesc_plt/tlsdesc_got to elf_link_hash_table gdb-buildbot
2020-07-08 23:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-08 18:58 [binutils-gdb] elf32-tic6x.c: Define the default elf32_bed to elf32_tic6x_bed gdb-buildbot
2020-07-08 18:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-06 22:46 [binutils-gdb] RISC-V: The object without priv spec attributes can be linked with any object gdb-buildbot
2020-07-06 22:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-04 13:09 [binutils-gdb] ELF: Consolidate readonly_dynrelocs gdb-buildbot
2020-07-04 13:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-04  5:43 [binutils-gdb] PR26069, strip/objcopy memory leaks gdb-buildbot
2020-07-04  5:43 ` Failures on Fedora-i686, branch master gdb-buildbot
     [not found] <15e5fd35569d555ca53f074c571d4a3d06da67b0@gdb-build>
2020-07-02 23:45 ` gdb-buildbot
2020-07-02 18:46 [binutils-gdb] gdb: Represent all languages as sub-classes of language_defn gdb-buildbot
2020-07-02 18:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-01 13:45 [binutils-gdb] hurd: unwinding support over signal trampolines gdb-buildbot
2020-07-01 13:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-07-01 11:12 [binutils-gdb] hurd: fix pushing target on inferior creation gdb-buildbot
2020-07-01 11:12 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-30 21:23 [binutils-gdb] hurd: add missing awk script dependency gdb-buildbot
2020-06-30 21:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-30 12:42 [binutils-gdb] replace_typedefs: handle templates in namespaces gdb-buildbot
2020-06-30 12:42 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-30  0:16 [binutils-gdb] bfd: fix handling of R_BPF_INSN_{32,64} relocations gdb-buildbot
2020-06-30  0:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-29 14:19 [binutils-gdb] Fix all unexpected failures in gas testsuite for pdp11-aout gdb-buildbot
2020-06-29 14:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-27 14:47 [binutils-gdb] Share DWARF partial symtabs gdb-buildbot
2020-06-27 14:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-26 18:51 [binutils-gdb] Pass dwarf2_per_bfd instead of dwarf2_per_objfile to some index-related functions gdb-buildbot
2020-06-26 18:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-26  8:48 [binutils-gdb] Remove leftover references to dwarf2_per_cu_data::dwarf2_per_objfile gdb-buildbot
2020-06-26  8:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-26  3:50 [binutils-gdb] Add dwarf2_per_objfile parameter to free_one_cached_comp_unit gdb-buildbot
2020-06-26  3:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-26  1:24 [binutils-gdb] Remove dwarf2_per_cu_data::objfile () gdb-buildbot
2020-06-26  1:24 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-25 10:23 [binutils-gdb] Add dwarf2_per_objfile to dwarf_expr_context and dwarf2_frame_cache gdb-buildbot
2020-06-25 10:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-25  2:49 [binutils-gdb] Pass dwarf2_cu objects to dwo-related functions, instead of dwarf2_per_cu_data gdb-buildbot
2020-06-25  2:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-25  0:19 [binutils-gdb] Add dwarf2_per_objfile parameter to process_full_{comp, type}_unit gdb-buildbot
2020-06-25  0:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-24 16:54 [binutils-gdb] Remove dwarf2_per_cu_data::dwarf2_per_objfile reference in cutu_reader::keep gdb-buildbot
2020-06-24 16:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-24 14:18 [binutils-gdb] Make queue_and_load_dwo_tu receive a dwarf2_cu gdb-buildbot
2020-06-24 14:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-24  6:14 [binutils-gdb] Make dwarf2_get_dwz_file take a dwarf2_per_bfd gdb-buildbot
2020-06-24  6:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-24  3:41 [binutils-gdb] Add dwarf2_per_bfd field to dwarf2_per_cu_data gdb-buildbot
2020-06-24  3:41 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-22  8:37 [binutils-gdb] Fix bugs in 'val and 'pos with range types gdb-buildbot
2020-06-22  8:37 ` Failures on Fedora-i686, 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-07-22  5:11 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-21 18:16 [binutils-gdb] Various procfs.c cleanups gdb-buildbot
2020-07-22  2:36 ` Failures on Fedora-i686, 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-07-21 21:24 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-21  3:47 [binutils-gdb] Adjust gdb.mi/mi-sym-info.exp filename patterns gdb-buildbot
2020-07-21  7:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-21  3:45 [binutils-gdb] gdbsupport: Drop now unused function 'stringify_argv' gdb-buildbot
2020-06-21  5:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-21  1:10 [binutils-gdb] Fix gdb.base/list-missing-source.exp on remote host gdb-buildbot
2020-07-21  4:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-20 11:32 [binutils-gdb] [gdb/testsuite] Add comment in exec_is_pie gdb-buildbot
2020-06-20 11:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-20  4:06 [binutils-gdb] [gdb/testsuite] Add target board gold gdb-buildbot
2020-06-20  4:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19 23:27 [binutils-gdb] Silence warnings about incompatible plugins gdb-buildbot
2020-07-20 20:46 ` Failures on Fedora-i686, 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-07-20 18:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19 21:37 [binutils-gdb] Don't write to inferior_ptid in aix-thread.c gdb-buildbot
2020-07-20 15:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19 19:47 [binutils-gdb] Don't write to inferior_ptid in windows-nat.c, part II gdb-buildbot
2020-07-20 10:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19 18:53 [binutils-gdb] Don't write to inferior_ptid in windows-nat.c, part I gdb-buildbot
2020-07-20  7:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19 17:33 [binutils-gdb] Don't write to inferior_ptid in go32-nat.c gdb-buildbot
2020-07-20  5:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19 17:15 [binutils-gdb] Don't write to inferior_ptid in fork-child.c gdb-buildbot
2020-07-20  2:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19 16:03 [binutils-gdb] Don't write to inferior_ptid in bsd-kvm.c gdb-buildbot
2020-07-20  0:11 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19 13:17 [binutils-gdb] Don't write to inferior_ptid in corelow.c gdb-buildbot
2020-07-19 16:24 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19 11:28 [binutils-gdb] Don't write to inferior_ptid in gnu-nat.c gdb-buildbot
2020-07-19 11:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19  9:39 [binutils-gdb] Don't write to inferior_ptid in nto-procfs.c gdb-buildbot
2020-07-19  6:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19  7:49 [binutils-gdb] Don't write to inferior_ptid in remote.c gdb-buildbot
2020-07-19  0:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19  6:54 [binutils-gdb] Don't write to inferior_ptid in tracectf.c gdb-buildbot
2020-07-18 22:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19  5:59 [binutils-gdb] Don't write to inferior_ptid in tracefile-tfile.c gdb-buildbot
2020-07-18 19:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19  5:22 [binutils-gdb] Don't write to inferior_ptid in procfs.c gdb-buildbot
2020-07-18 17:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19  3:50 [binutils-gdb] Don't write to inferior_ptid in infrun.c gdb-buildbot
2020-07-18 14:25 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-19  3:14 [binutils-gdb] Don't write to inferior_ptid in target.c gdb-buildbot
2020-07-18 11:49 ` Failures on Fedora-i686, 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-07-17 22:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-18  5:41 [binutils-gdb] Fix TUI support checks in gdb.tui tests gdb-buildbot
2020-07-17 17:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-18  2:49 [binutils-gdb] Remove unnecessary TUI declarations gdb-buildbot
2020-07-17 14:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-18  0:13 [binutils-gdb] gdb: check for partial symtab presence in dwarf2_initialize_objfile gdb-buildbot
2020-07-17  9:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17 22:40 [binutils-gdb] gdb, gdbserver: remove ARM regdat files gdb-buildbot
2020-07-17  4:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17 21:27 [binutils-gdb] gdb/features: remove rx.xml from XMLTOC list gdb-buildbot
2020-07-17  1:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17 20:28 [binutils-gdb] Pass INTERNAL_GDBFLAGS when executing GDB gdb-buildbot
2020-07-16 23:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17 19:51 [binutils-gdb] x86: Delete incorrect vmgexit entry in prefix_table gdb-buildbot
2020-07-16 19:53 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17 18:09 [binutils-gdb] [gdb/testsuite] Remove dependence on tcl_unknown gdb-buildbot
2020-07-16 15:21 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17 17:29 [binutils-gdb] Update thread_control_state::trap_expected comments gdb-buildbot
2020-07-16 12:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17 16:34 [binutils-gdb] gdb: Convert language la_lookup_symbol_nonlocal field to a method gdb-buildbot
2020-07-16  9:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17 15:40 [binutils-gdb] gdb: Convert language la_value_print_inner field to a method gdb-buildbot
2020-07-16  7:20 ` Failures on Fedora-i686, 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-07-16  2:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17 10:07 [binutils-gdb] gdb: remove TYPE_NFIELDS macro gdb-buildbot
2020-06-17 10:07 ` Failures on Fedora-i686, 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-07-15 12:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17  2:46 [binutils-gdb] Fix crash when exiting TUI with gdb -tui gdb-buildbot
2020-07-15  7:42 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17  2:41 [binutils-gdb] gdb: Restore old annotations behaviour when printing frame info gdb-buildbot
2020-06-17  2:41 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-17  0:38 [binutils-gdb] Fix crash when TUI window creation fails gdb-buildbot
2020-07-15  2:29 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-16 12:22 [binutils-gdb] Add two missing return values in gdb.python/py-nested-maps.c gdb-buildbot
2020-07-14 23:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-16  7:10 [binutils-gdb] Really remove tic30-aout support gdb-buildbot
2020-07-14 21:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-16  4:14 [binutils-gdb] [PATCH v2 0/9] RISC-V: Support version controling for ISA standard extensions and CSR gdb-buildbot
2020-06-16  4:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-15 20:44 [binutils-gdb] xtensa: allow runtime ABI selection gdb-buildbot
2020-07-14 18:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-15 19:30 [binutils-gdb] gold, ld: Implement -z start-stop-visibility=... option gdb-buildbot
2020-07-14 16:07 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-15 13:14 [binutils-gdb] Remove read_memory_string gdb-buildbot
2020-07-14  6:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-15  7:33 [binutils-gdb] gdb/testsuite: fix minor things in jit tests gdb-buildbot
2020-07-14  3:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-15  7:16 [binutils-gdb] Use bfd_get_filename throughout gdb gdb-buildbot
2020-06-15  7:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-15  6:22 [binutils-gdb] Obsolete PowerPC PE, winnt and cygwin targets gdb-buildbot
2020-07-14  1:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-15  4:37 [binutils-gdb] Restore missing Rust test gdb-buildbot
2020-06-15  4:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-14 16:01 [binutils-gdb] Handle Windows drives in rbreak paths gdb-buildbot
2020-07-13 20:12 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-14 12:51 [binutils-gdb] x86: Correct xsusldtrk mnemonic gdb-buildbot
2020-07-13 16:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-13  4:15 [binutils-gdb] gdb: mention removed GDBserver host support in NEWS gdb-buildbot
2020-07-13  6:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-13  2:25 [binutils-gdb] gdbserver: remove support for Tile gdb-buildbot
2020-07-13  1:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-13  0:20 [binutils-gdb] Avoid short i386 register names on Solaris/x86 [PR25981] gdb-buildbot
2020-06-13  0:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-13  0:15 [binutils-gdb] gdbserver: remove support for CRIS gdb-buildbot
2020-07-12 20:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-12 23:20 [binutils-gdb] gdbserver: remove support for Blackfin gdb-buildbot
2020-07-12 17:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-12 22:44 [binutils-gdb] gdbserver: remove support for Neutrino gdb-buildbot
2020-07-12 15:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-12 21:48 [binutils-gdb] gdbserver: remove support for LynxOS gdb-buildbot
2020-07-12 12:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-12 18:05 [binutils-gdb] Fix a use-after-free bug in the BFD library when scanning a corrupt ELF file gdb-buildbot
2020-06-12 18:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-12 17:19 [binutils-gdb] [gdbserver] Fix Wlto-type-mismatch for debug_agent gdb-buildbot
2020-07-12  7:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-12 13:51 [binutils-gdb] gdb/testsuite: Prevent globals leaking between test scripts gdb-buildbot
2020-07-12  5:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-12 12:11 [binutils-gdb] [gdb/testsuite] Don't leak tuiterm.exp spawn override gdb-buildbot
2020-07-12  2:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-12 11:53 [binutils-gdb] ECOFF slurp_relocs thinko gdb-buildbot
2020-06-12 11:53 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-12  8:48 [binutils-gdb] Fix the BFD library to handle Windows pathnames with more than 260 characters and UNIX style directory separators gdb-buildbot
2020-06-12  8:48 ` Failures on Fedora-i686, 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-07-12  0:11 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-12  5:11 [binutils-gdb] Stop considering hw and sw breakpoint locations duplicates (PR gdb/25741) gdb-buildbot
2020-06-12  5:11 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-11 17:19 [binutils-gdb] Fix hex floating point lexing gdb-buildbot
2020-07-11 16:41 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-11 16:35 [binutils-gdb] Fix gdb.multi/multi-re-run.exp with native-gdbserver gdb-buildbot
2020-06-11 16:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-11 14:10 [binutils-gdb] Compute proper length for dynamic types of TYPE_CODE_TYPEDEF gdb-buildbot
2020-07-11 11:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-11 13:16 [binutils-gdb] [gdb/testsuite] Make gdb.base/dbx.exp more robust gdb-buildbot
2020-07-11  9:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-11  6:54 [binutils-gdb] Remove ALL_UIS gdb-buildbot
2020-06-11  6:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-11  5:27 [binutils-gdb] asan: readelf: process_mips_specific buffer overflow gdb-buildbot
2020-07-11  1:43 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-11  2:14 [binutils-gdb] ia64: Set DF_TEXTREL instead of reltext gdb-buildbot
2020-07-10 23:11 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-11  0:20 [binutils-gdb] Sync config with GCC gdb-buildbot
2020-06-11  0:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-10 17:53 [binutils-gdb] gdbserver/linux-ia64-low: fix a build-breaking typo gdb-buildbot
2020-06-10 17:53 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-10 15:07 [binutils-gdb] [gdb/symtab] Enable ada .gdb_index gdb-buildbot
2020-07-10 20:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-10 14:40 [binutils-gdb] gdb: remove unnecessary struct typedef in sparc64-tdep.c gdb-buildbot
2020-06-10 14:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-10 14:12 [binutils-gdb] [gdb/symtab] Fix name lookup in dw2_map_matching_symbols gdb-buildbot
2020-07-10 18:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-10 13:17 [binutils-gdb] ELF: Properly handle section symbols gdb-buildbot
2020-07-10 15:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-10 11:23 [binutils-gdb] Remove lookup_objfile_from_block gdb-buildbot
2020-06-10 11:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-10  8:06 [binutils-gdb] Remove allocate_symbol et al gdb-buildbot
2020-06-10  8:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-10  4:54 [binutils-gdb] Update NEWS and documentation for help and apropos changes gdb-buildbot
2020-06-10  4:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-10  1:37 [binutils-gdb] Ensure class_alias is only used for user-defined aliases gdb-buildbot
2020-06-10  1:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-09 19:10 [binutils-gdb] Fix/improve 'help CLASS' output gdb-buildbot
2020-06-09 19:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-09 15:25 [binutils-gdb] IFUNC: Update IFUNC resolver check with DT_TEXTREL gdb-buildbot
2020-07-10 10:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-09 13:53 [binutils-gdb] i386-dis.c: Fix a typo in comments gdb-buildbot
2020-07-10  8:16 ` Failures on Fedora-i686, 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-07-10  5:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-09  9:34 [binutils-gdb] x86: utilize X macro in EVEX decoding gdb-buildbot
2020-07-10  0:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-09  9:20 [binutils-gdb] Fix the problems reported by prefix check of command-def-selftests.c gdb-buildbot
2020-06-09  9:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-09  7:44 [binutils-gdb] x86: correct mis-named MOD_0F51 enumerator gdb-buildbot
2020-07-09 19:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-09  2:56 [binutils-gdb] Add a selftest that detects a 'corrupted' command tree structure in GDB gdb-buildbot
2020-06-09  2:56 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-08 23:40 [binutils-gdb] Fix the only incorrect case found by command_structure_invariants selftest gdb-buildbot
2020-06-08 23:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-08 23:05 [binutils-gdb] gdb: remove FIELD_TYPE macro gdb-buildbot
2020-07-09 12:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-08 22:10 [binutils-gdb] gdb: add field::type / field::set_type gdb-buildbot
2020-07-09  9:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-08 21:34 [binutils-gdb] gdb: remove TYPE_INDEX_TYPE macro gdb-buildbot
2020-07-09  7:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-08 20:39 [binutils-gdb] gdb: add type::index_type / type::set_index_type gdb-buildbot
2020-07-09  4:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-08 20:23 [binutils-gdb] update name of several Ada fixed-point type handling functions gdb-buildbot
2020-06-08 20:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-08 15:56 [binutils-gdb] [PATCH] arm: Add DFB instruction for ARMv8-R gdb-buildbot
2020-07-09  2:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-08 13:47 [binutils-gdb] Don't silently skip tests if OpenCL is unsupported gdb-buildbot
2020-06-08 13:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-08 10:34 [binutils-gdb] [gdb/testsuite] Rename *.exp.in to *.exp.tcl gdb-buildbot
2020-06-08 10:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-08  7:43 [binutils-gdb] x86: restrict use of register aliases gdb-buildbot
2020-07-08 21:21 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-08  0:51 [binutils-gdb] Fix gdb.multi/multi-kill.exp gdb-buildbot
2020-06-08  0:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-07 21:39 [binutils-gdb] Fix global variable collision in gdb.multi/multi-kill.exp gdb-buildbot
2020-06-07 21:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-07 18:24 [binutils-gdb] Enable hardware breakpoints for gdbserver on Windows gdb-buildbot
2020-06-07 18:24 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-07 17:04 [binutils-gdb] elf64-hppa: Replace plt_sec/plt_rel_sec with root.splt/root.srelplt gdb-buildbot
2020-07-08 16:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-07 15:10 [binutils-gdb] Disable record btrace bts support for AMD processors gdb-buildbot
2020-06-07 15:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-07 11:52 [binutils-gdb] gdb: infrun: consume multiple events at each pass in stop_all_threads gdb-buildbot
2020-06-07 11:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-07  8:37 [binutils-gdb] gdb: remove TYPE_CODE macro gdb-buildbot
2020-06-07  8:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-07  5:20 [binutils-gdb] gdb: add type::code / type::set_code gdb-buildbot
2020-06-07  5:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-07  2:05 [binutils-gdb] [gdb/testsuite] Fix gdb.fortran/nested-funcs-2.exp with gdbserver gdb-buildbot
2020-06-07  2:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-07  1:42 [binutils-gdb] Remove is_vxworks from _bfd_sparc_elf_link_hash_table gdb-buildbot
2020-07-08  2:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-06 22:53 [binutils-gdb] [gdb/testsuite] Split up multi-exec test-cases gdb-buildbot
2020-06-06 22:53 ` Failures on Fedora-i686, 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-07-07 23:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-06  7:12 [binutils-gdb] Power10 tidies gdb-buildbot
2020-07-07 21:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-06  5:59 [binutils-gdb] Rename PowerPC64 pcrel GOT TLS relocations gdb-buildbot
2020-07-07 18:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-06  5:51 [binutils-gdb] gdb: introduce 'all_non_exited_process_targets' and 'switch_to_target_no_thread' gdb-buildbot
2020-06-06  5:51 ` Failures on Fedora-i686, 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-07-07 16:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-05 18:46 [binutils-gdb] gdb/python: Avoid use after free in py-tui.c gdb-buildbot
2020-07-07 13:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-05 16:53 [binutils-gdb] bfin: Initialize picrel to silence GCC warning gdb-buildbot
2020-07-07 11:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-05 15:04 [binutils-gdb] [gdb/NEWS] Fix typos gdb-buildbot
2020-07-07  6:15 ` Failures on Fedora-i686, 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-07-07  3:43 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-05 13:15 [binutils-gdb] bpf stack smashing detected gdb-buildbot
2020-07-07  1:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-05 11:24 [binutils-gdb] Extend pdp11-aout symbol table format and code for .stab symbols gdb-buildbot
2020-07-06 20:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-05 10:30 [binutils-gdb] Correct a comment gdb-buildbot
2020-07-06 17:44 ` Failures on Fedora-i686, 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-07-06 15:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-05  8:36 [binutils-gdb] x86: Remove target_id from elf_x86_link_hash_table gdb-buildbot
2020-07-06 13:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-05  6:28 [binutils-gdb] [gdb/testsuite] Fix error handling in gdb_file_cmd gdb-buildbot
2020-07-06  7:35 ` Failures on Fedora-i686, 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-07-06  5:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-05  3:09 [binutils-gdb] gdb/infrun: extract out a code piece into 'mark_non_executing_threads' function gdb-buildbot
2020-06-05  3:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-04 16:50 [binutils-gdb] opcodes: discriminate endianness and insn-endianness in CGEN ports gdb-buildbot
2020-07-06  2:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-04 15:55 [binutils-gdb] opcodes: support insn endianness in cgen_cpu_open gdb-buildbot
2020-07-06  0:07 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-04 15:53 [binutils-gdb] gdb/infrun: move a 'regcache_read_pc' call down to first use gdb-buildbot
2020-06-04 15:53 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-04 15:17 [binutils-gdb] [gdb/testsuite] Fix use of fail in gdb_cmd_file gdb-buildbot
2020-07-05 21:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-04 13:45 [binutils-gdb] ELF: Don't check relocations in non-loaded, non-alloced sections gdb-buildbot
2020-07-05 19:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-04 11:55 [binutils-gdb] gdb: protect some 'regcache_read_pc' calls gdb-buildbot
2020-06-04 11:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-04  7:55 [binutils-gdb] RISC-V: Add elfNN_riscv_mkobject to initialize RISC-V tdata gdb-buildbot
2020-06-04  7:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-04  3:55 [binutils-gdb] Remove ada-lang.c:align_value gdb-buildbot
2020-06-04  3:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-04  0:30 [binutils-gdb] [gdb/symtab] Fix missing breakpoint location for inlined function gdb-buildbot
2020-07-05 14:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-03 23:54 [binutils-gdb] gdb: update the copyright year in async-event.[ch] gdb-buildbot
2020-06-03 23:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-03 22:40 [binutils-gdb] nios2: Don't check relocations in non-loaded, non-alloced sections gdb-buildbot
2020-07-05  9:07 ` Failures on Fedora-i686, 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-07-05  6:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-03 20:13 [binutils-gdb] [gdb/testsuite] Fix use of verbose in gdb/jit-*.exp gdb-buildbot
2020-07-05  1:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-03 19:55 [binutils-gdb] Sync config and libiberty with GCC gdb-buildbot
2020-06-03 19:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-03 19:18 [binutils-gdb] Updated Serbian translation for the opcodes sub-directory gdb-buildbot
2020-07-04 23:12 ` Failures on Fedora-i686, 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-07-04 20:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-03 17:10 [binutils-gdb] ELF: Consolidate maybe_set_textrel gdb-buildbot
2020-07-04 18:09 ` Failures on Fedora-i686, 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-07-04 15:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-03 15:53 [binutils-gdb] gdb/testsuite: Disable path and duplicate checks when parallel testing gdb-buildbot
2020-06-03 15:53 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-03 14:37 [binutils-gdb] x86: Silence -fsanitize=undefined gdb-buildbot
2020-07-04 10:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-03 10:21 [binutils-gdb] PR26069, strip/objcopy misaligned address accesses gdb-buildbot
2020-07-04  8:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-03  1:15 [binutils-gdb] gdb: Convert language skip_trampoline field to a method gdb-buildbot
2020-07-04  0:43 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-03  0:38 [binutils-gdb] gdb: Convert language la_demangle field to a method gdb-buildbot
2020-07-03 22:13 ` Failures on Fedora-i686, 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-07-03 14:43 ` Failures on Fedora-i686, 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-07-03  9:44 ` Failures on Fedora-i686, 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-07-03  7:11 ` Failures on Fedora-i686, 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-07-03  4:44 ` Failures on Fedora-i686, 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-07-03  2:16 ` Failures on Fedora-i686, 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-07-02 21:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-02 13:34 [binutils-gdb] [gdb/testsuite] Fix scrolling in gdb.dwarf2/multidictionary.exp gdb-buildbot
2020-07-02 16:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-02  1:47 [binutils-gdb] ELF: Move dyn_relocs to struct elf_link_hash_entry gdb-buildbot
2020-07-02 13:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-01 15:41 [binutils-gdb] alpha-vms: ETIR checks gdb-buildbot
2020-07-02 11:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-01  9:25 [binutils-gdb] gdb: Preserve is-stmt lines when switch between files gdb-buildbot
2020-07-02  6:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-06-01  8:35 [binutils-gdb] hurd: Add shared mig declarations gdb-buildbot
2020-07-02  3:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-31 10:59 [binutils-gdb] gnu-nat: Move local functions inside gnu_nat_target class gdb-buildbot
2020-07-02  0:28 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-31  8:52 [binutils-gdb] gdb/testsuite: Detect and warn if paths are used in test names gdb-buildbot
2020-05-31  8:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-31  4:52 [binutils-gdb] Fix Ada value printing on PPC64 gdb-buildbot
2020-05-31  4:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-31  0:52 [binutils-gdb] [gdb/testsuite] Change kfail into xfail in gdb.ada/packed_tagged.exp gdb-buildbot
2020-05-31  0:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-31  0:21 [binutils-gdb] hurd: add gnu_target pointer to fix thread API calls gdb-buildbot
2020-07-01  8:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30 23:26 [binutils-gdb] hurd: remove unused variables gdb-buildbot
2020-07-01  6:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30 22:32 [binutils-gdb] hurd: add missing include gdb-buildbot
2020-07-01  3:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30 20:07 [binutils-gdb] hurd: fix gnu_debug_flag type gdb-buildbot
2020-06-30 17:43 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30 16:54 [binutils-gdb] [gdb/testsuite] Fix gdb.cp/cpexprs-debug-types.exp inclusion gdb-buildbot
2020-05-30 16:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30 16:54 [binutils-gdb] gdb: change bug URL to https gdb-buildbot
2020-06-30 15:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30 12:56 [binutils-gdb] Clean-up gdb.ada test names gdb-buildbot
2020-05-30 12:56 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30  9:14 [binutils-gdb] gdb: rename dwarf2_per_objfile variables/fields to per_objfile gdb-buildbot
2020-06-30 10:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30  8:38 [binutils-gdb] Fix build errors in with clang in gdb.compile/compile-cplus.c gdb-buildbot
2020-06-30  7:42 ` Failures on Fedora-i686, 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-06-30  5:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30  6:49 [binutils-gdb] Build two gdb.cp testcases with -Wno-unused-comparison gdb-buildbot
2020-06-30  2:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30  5:00 [binutils-gdb] cpu, opcodes: add instruction semantics to bpf.cpu and minor fixes gdb-buildbot
2020-06-29 21:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30  4:59 [binutils-gdb] [gdb/symtab] Fix incomplete CU list assert in .debug_names gdb-buildbot
2020-05-30  4:59 ` Failures on Fedora-i686, 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-06-29 19:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30  1:38 [binutils-gdb] Fix "enumeration values not handled in switch" error in testsuite gdb-buildbot
2020-06-29 11:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-30  0:59 [binutils-gdb] Power10 VSX scalar min-max-compare quad precision operations gdb-buildbot
2020-05-30  0:59 ` Failures on Fedora-i686, 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-06-29  9:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 23:32 [binutils-gdb] Pass -Wno-deprecated-register for gdb.cp that use "register" gdb-buildbot
2020-06-29  6:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 22:37 [binutils-gdb] [gdb/symtab] Make gold index workaround more precise gdb-buildbot
2020-06-29  4:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 21:41 [binutils-gdb] Fix "'operator new' should not return NULL" errors in testsuite gdb-buildbot
2020-06-29  1:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 21:00 [binutils-gdb] Power10 VSX load/store rightmost element operations gdb-buildbot
2020-05-29 21:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 19:53 [binutils-gdb] PR26044, Some targets can't be compiled with GCC 10 (tilepro) gdb-buildbot
2020-06-28 20:42 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 18:58 [binutils-gdb] asan: ns32k: use of uninitialized value gdb-buildbot
2020-06-28 18:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 18:04 [binutils-gdb] Fix a potential use of an uninitialised value in the ns32k disassembler gdb-buildbot
2020-06-28 15:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 17:09 [binutils-gdb] cp-completion-aliases.exp: Use test_gdb_complete_{unique, multiple} gdb-buildbot
2020-06-28 13:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 17:00 [binutils-gdb] Power10 test lsb by byte operation gdb-buildbot
2020-05-29 17:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 16:12 [binutils-gdb] Use add_partial_symbol in load_partial_dies gdb-buildbot
2020-06-28 10:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 15:17 [binutils-gdb] Inline abbrev lookup gdb-buildbot
2020-06-28  8:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 14:23 [binutils-gdb] Lazily compute partial DIE name gdb-buildbot
2020-06-28  5:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 13:46 [binutils-gdb] Attribute method inlining gdb-buildbot
2020-06-28  3:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 12:30 [binutils-gdb] Move exit_status_set_internal_vars out of GLOBAL_CURDIR gdb-buildbot
2020-06-28  0:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 11:16 [binutils-gdb] Use errno value of first openp failure gdb-buildbot
2020-06-27 22:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29 10:41 [binutils-gdb] Don't close process handle provided by WaitForDebugEvent gdb-buildbot
2020-06-27 19:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29  9:27 [binutils-gdb] Don't close thread handles provided by WaitForDebugEvent gdb-buildbot
2020-06-27 17:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29  7:57 [binutils-gdb] Move line_header_hash to dwarf2_per_objfile gdb-buildbot
2020-06-27 12:17 ` Failures on Fedora-i686, 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-06-27  7:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29  5:31 [binutils-gdb] Pass existing_cu object to cutu_reader gdb-buildbot
2020-06-27  4:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29  4:58 [binutils-gdb] Power10 bit manipulation operations gdb-buildbot
2020-05-29  4:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29  4:36 [binutils-gdb] Add comp_unit_head to dwarf2_per_cu_data gdb-buildbot
2020-06-27  2:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29  3:22 [binutils-gdb] Make load_cu return the loaded dwarf2_cu gdb-buildbot
2020-06-26 23:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-29  2:26 [binutils-gdb] Pass dwarf2_cu to process_full_{comp,type}_unit gdb-buildbot
2020-06-26 21:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28 22:44 [binutils-gdb] Remove dwarf2_per_cu_data::dwarf2_per_objfile gdb-buildbot
2020-06-26 11:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28 20:15 [binutils-gdb] Add dwarf2_per_objfile parameter to get_die_type_at_offset gdb-buildbot
2020-06-26  6:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28 16:57 [binutils-gdb] Power10 Reduced precision outer product operations gdb-buildbot
2020-05-28 16:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28 16:37 [binutils-gdb] Add dwarf2_per_objfile parameter to allocate_piece_closure gdb-buildbot
2020-06-25 19:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28 16:19 [binutils-gdb] Add dwarf2_per_objfile parameter to dwarf2_read_addr_index gdb-buildbot
2020-06-25 15:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28 15:00 [binutils-gdb] Remove dwarf2_per_cu_data::text_offset gdb-buildbot
2020-06-25 12:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28 13:28 [binutils-gdb] Move int type methods out of dwarf2_per_cu_data gdb-buildbot
2020-06-25  8:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28 12:55 [binutils-gdb] Power10 SIMD permute class operations gdb-buildbot
2020-05-28 12:55 ` Failures on Fedora-i686, 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-06-25  5:21 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28  8:54 [binutils-gdb] Power10 128-bit binary integer operations gdb-buildbot
2020-05-28  8:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28  8:28 [binutils-gdb] Add dwarf2_per_objfile parameter to create_partial_symtab gdb-buildbot
2020-06-24 19:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28  5:41 [binutils-gdb] Add dwarf2_per_objfile parameter to cutu_reader's constructors gdb-buildbot
2020-06-24 11:16 ` Failures on Fedora-i686, 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-06-24  8:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28  4:54 [binutils-gdb] Power10 VSX 32-byte storage access gdb-buildbot
2020-05-28  4:54 ` Failures on Fedora-i686, 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-06-23 22:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-28  0:53 [binutils-gdb] Power10 vector integer multiply, divide, modulo insns gdb-buildbot
2020-05-28  0:53 ` Failures on Fedora-i686, 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-06-23 15:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27 20:19 [binutils-gdb] Add dwarf2_per_objfile member to DWARF batons gdb-buildbot
2020-06-23  9:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27 20:15 [binutils-gdb] Power10 byte reverse instructions gdb-buildbot
2020-05-27 20:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27 18:26 [binutils-gdb] Add "objfile" parameter to two partial_symtab methods gdb-buildbot
2020-06-23  5:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27 17:15 [binutils-gdb] Power10 Copy/Paste Extensions gdb-buildbot
2020-05-27 17:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27 14:31 [binutils-gdb] Fix PR 26000, logical bitwise error / prologue analyzer gdb-buildbot
2020-06-22 23:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27 13:36 [binutils-gdb] Fix some duplicate test names gdb-buildbot
2020-06-22 21:12 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27 12:40 [binutils-gdb] ld: Add --warn-textrel and obsolete --warn-shared-textrel gdb-buildbot
2020-06-22 18:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27 12:31 [binutils-gdb] Power10 Add new L operand to the slbiag instruction gdb-buildbot
2020-05-27 12:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27  8:30 [binutils-gdb] PowerPC Default disassembler to -Mpower10 gdb-buildbot
2020-05-27  8:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27  7:06 [binutils-gdb] Fix extraction of signed constants in nios2 disassembler (again) gdb-buildbot
2020-06-22 16:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27  4:31 [binutils-gdb] PowerPC Rename powerxx to power10 gdb-buildbot
2020-05-27  4:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-27  0:29 [binutils-gdb] Updated French translation for the ld sub-directory and an update Spanish translation for the opcodes subdirectory gdb-buildbot
2020-05-27  0:29 ` Failures on Fedora-i686, 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-06-22 13:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26 20:26 [binutils-gdb] PR25961, buffer overflow in coff_swap_aux_in gdb-buildbot
2020-05-26 20:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26 17:54 [binutils-gdb] Use = instead of == for better portability gdb-buildbot
2020-06-22  6:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26 16:06 [binutils-gdb] gdb/fortran: Allow Flang MAIN_ in Fortran testing gdb-buildbot
2020-05-26 16:06 ` Failures on Fedora-i686, 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-06-22  1:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26 12:47 [binutils-gdb] [gdb/testsuite] Add test-case gold-gdb-index.exp gdb-buildbot
2020-06-21 22:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26 11:15 [binutils-gdb] ELF: Updated comments for ET_EXEC and ET_DYN gdb-buildbot
2020-06-21 20:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26 10:40 [binutils-gdb] [gdb/testsuite] Add target board gold-gdb-index gdb-buildbot
2020-06-21 17:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26  8:50 [binutils-gdb] gdb/testsuite: add simavr.exp board gdb-buildbot
2020-06-21 12:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26  7:55 [binutils-gdb] gdb/testsuite: add inferior arguments test gdb-buildbot
2020-06-21 10:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26  7:00 [binutils-gdb] gdb/testsuite: support passing inferior arguments with native-gdbserver board gdb-buildbot
2020-06-21  7:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26  5:10 [binutils-gdb] Use construct_inferior_arguments which handles special chars gdb-buildbot
2020-06-21  2:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26  3:55 [binutils-gdb] nto_process_target::create_inferior: Pass args as char ** gdb-buildbot
2020-06-21  0:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26  3:18 [binutils-gdb] gdbserver: Don't add extra NULL to program args gdb-buildbot
2020-06-20 21:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26  2:43 [binutils-gdb] [gdb] Fix catch throw regexp matching gdb-buildbot
2020-05-26  2:43 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26  1:26 [binutils-gdb] gdbsupport: Adapt construct_inferior_arguments gdb-buildbot
2020-06-20 16:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-26  0:30 [binutils-gdb] gdb: Move construct_inferior_arguments to gdbsupport gdb-buildbot
2020-06-20 14:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-25 22:44 [binutils-gdb] Change server_command to bool gdb-buildbot
2020-05-25 22:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-25 21:24 [binutils-gdb] [gdb/testsuite] Fix exec_is_pie with gold linker gdb-buildbot
2020-06-20  6:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-25 18:44 [binutils-gdb] Fix for the complaint observed when symbol reading due to unsupported .debug_names form gdb-buildbot
2020-05-25 18:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-25 17:09 [binutils-gdb] gdb: make gdbarch.sh write gdbarch.{c,h} directly gdb-buildbot
2020-06-19 17:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-25 14:46 [binutils-gdb] Don't re-process a DIE in read_lexical_block_scope gdb-buildbot
2020-05-25 14:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-25 10:46 [binutils-gdb] More C++-ification for struct display gdb-buildbot
2020-05-25 10:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-25  6:45 [binutils-gdb] Remove ALL_PSPACES gdb-buildbot
2020-05-25  6:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-25  2:47 [binutils-gdb] Remove ALL_SO_LIBS and so_list_head gdb-buildbot
2020-05-25  2:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-24 18:50 [binutils-gdb] Speed up psymbol reading by removing a copy gdb-buildbot
2020-05-24 18:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-24 14:50 [binutils-gdb] [gdb] Fix stepping over fork with follow-fork-mode child and gcc-8 gdb-buildbot
2020-05-24 14:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-24 10:52 [binutils-gdb] [gdb/testsuite] Add gdb.dwarf2/clang-debug-names.c gdb-buildbot
2020-05-24 10:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-24  7:26 [binutils-gdb] gdb: remove TYPE_FIELD macro gdb-buildbot
2020-06-18 10:56 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-24  6:53 [binutils-gdb] gdb: small cleanup of async-event.c structs gdb-buildbot
2020-05-24  6:53 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-24  2:54 [binutils-gdb] gdb: remove TYPE_DYN_PROP_LIST macro gdb-buildbot
2020-05-24  2:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-23 23:04 [binutils-gdb] Add completion styling gdb-buildbot
2020-06-18  0:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-23 18:54 [binutils-gdb] gdb: make add_dyn_prop a method of struct type gdb-buildbot
2020-05-23 18:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-23 14:55 [binutils-gdb] gdb: make get_dyn_prop a method of struct type gdb-buildbot
2020-05-23 14:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-23 10:56 [binutils-gdb] gdb: remove main_type::flag_static gdb-buildbot
2020-05-23 10:56 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-23  8:08 [binutils-gdb] Fix potential segfault gdb-buildbot
2020-06-17 17:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-23  2:56 [binutils-gdb] [gdb/testsuite] Fix gdb.reverse/consecutive-{precsave, reverse}.exp with gcc-8 gdb-buildbot
2020-05-23  2:56 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-22 23:30 [binutils-gdb] gdb: add type::fields / type::set_fields gdb-buildbot
2020-06-17 12:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-22 22:57 [binutils-gdb] [gdb/testsuite] Fix gdb.base/watchpoint-reuse-slot.exp with gcc-8 gdb-buildbot
2020-05-22 22:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-22 21:40 [binutils-gdb] gdb: add type::num_fields / type::set_num_fields gdb-buildbot
2020-06-17  7:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-22 20:18 [binutils-gdb] Remove obsolete declaration gdb-buildbot
2020-06-17  5:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-22 19:00 [binutils-gdb] [gdb/testsuite] Fix cur_addr update in gdb.base/watchpoint-reuse-slot.exp gdb-buildbot
2020-05-22 19:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-22 15:01 [binutils-gdb] [gdb/testsuite] Fix gdb.base/store.exp with gcc-10 gdb-buildbot
2020-05-22 15:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-22 11:00 [binutils-gdb] [gdb/testsuite] Fix gdb.base/shlib-call.exp with gcc-8 gdb-buildbot
2020-05-22 11:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-22  7:02 [binutils-gdb] [gdb/testsuite] Fix gdb_unbuffer_output return-type gdb-buildbot
2020-05-22  7:02 ` Failures on Fedora-i686, 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-06-17  0:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-22  3:00 [binutils-gdb] [gdb/testsuite] Fix gdb.base/consecutive.exp with gcc-8 gdb-buildbot
2020-05-22  3:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-21 23:01 [binutils-gdb] [gdb/testsuite] Compile compile-ifunc.c with -Wno-attribute-alias gdb-buildbot
2020-05-21 23:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-21 19:09 [binutils-gdb] gdb: fix -Wtautological-overlap-compare error in lm32-tdep.c gdb-buildbot
2020-06-16 21:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-21 19:03 [binutils-gdb] gdb: remove main_type::flag_incomplete gdb-buildbot
2020-05-21 19:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-21 15:12 [binutils-gdb] Re: PR25993, read of freed memory gdb-buildbot
2020-06-16 13:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-21 11:06 [binutils-gdb] [PATCH] bfd: tweak SET_ARCH_MACH of aout-cris.c gdb-buildbot
2020-05-21 11:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-21  3:05 [binutils-gdb] [gdb/testsuite] Fix gdb.base/async.exp with gcc-8 gdb-buildbot
2020-05-21  3:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-21  2:09 [binutils-gdb] Replace "if (x) free (x)" with "free (x)", bfd gdb-buildbot
2020-06-16  9:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-20 22:49 [binutils-gdb] Update more calls to add_prefix_cmd gdb-buildbot
2020-05-20 22:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-20 16:10 [binutils-gdb] gdb/testsuite: check mmap ret val against MAP_FAILED gdb-buildbot
2020-06-16  1:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-20 14:02 [binutils-gdb] Remove bound_name static from ada-lang.c gdb-buildbot
2020-06-15 20:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-20 10:29 [binutils-gdb] [gdb/symtab] Handle .gdb_index in ada language mode gdb-buildbot
2020-06-15 17:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-20  6:56 [binutils-gdb] PR25993, read of freed memory gdb-buildbot
2020-06-15 15:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-20  6:01 [binutils-gdb] Power10 dcbf, sync, and wait extensions gdb-buildbot
2020-06-15 12:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-20  5:24 [binutils-gdb] [gdb/testsuite] Fix i386-mpx.exp compilation warnings gdb-buildbot
2020-05-20  5:25 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-20  5:06 [binutils-gdb] PR26011, excessive memory allocation with fuzzed reloc sections gdb-buildbot
2020-06-15  9:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-20  1:24 [binutils-gdb] [gdb/testsuite] Update psym-external-decl.exp for gcc-10/clang gdb-buildbot
2020-05-20  1:24 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 21:26 [binutils-gdb] [gdb/testsuite] Fix gdb.ada/operator_bp.exp breakpoint location FAILs gdb-buildbot
2020-05-19 21:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 18:43 [binutils-gdb] Fix duplicate tests in gdb.rust gdb-buildbot
2020-06-14 23:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 18:41 [binutils-gdb] Update call to target_fileio_open gdb-buildbot
2020-06-14 20:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 18:28 [binutils-gdb] gdb: fix off-by-one error in quirk_rust_enum gdb-buildbot
2020-06-14 20:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 17:51 [binutils-gdb] Make exec-file-mismatch compare build IDs gdb-buildbot
2020-06-14 19:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 17:49 [binutils-gdb] Default gdb_bfd_open's fd parameter to -1 gdb-buildbot
2020-06-14 15:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 17:44 [binutils-gdb] gdb: fix -Wtautological-overlap-compare error in h8300-tdep.c gdb-buildbot
2020-06-14 11:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 17:42 [binutils-gdb] Fix thinko in recent update to bfd_section_from_shdr gdb-buildbot
2020-06-14  8:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 17:41 [binutils-gdb] gdb: make symfile_segment_data::segment_info an std::vector gdb-buildbot
2020-06-14  5:17 ` Failures on Fedora-i686, 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-06-14  2:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 17:39 [binutils-gdb] gdb: allocate symfile_segment_data with new gdb-buildbot
2020-06-13 22:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 17:26 [binutils-gdb] Remove gdb-gdb.gdb breakpoint on disappeared function info_command gdb-buildbot
2020-05-19 17:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 14:39 [binutils-gdb] OpenRISC BFD fixups for Glibc: gdb-buildbot
2020-06-13 19:40 ` Failures on Fedora-i686, 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-06-13 16:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19 13:25 [binutils-gdb] Fix size recalculation of fortran arrays gdb-buildbot
2020-05-19 13:25 ` Failures on Fedora-i686, 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-06-13 10:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19  9:25 [binutils-gdb] [gdb/testsuite] Fix Wunused-result warning in until-reverse.c gdb-buildbot
2020-05-19  9:25 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19  5:24 [binutils-gdb] PR25900, RISC-V: null pointer dereference gdb-buildbot
2020-05-19  5:24 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19  4:37 [binutils-gdb] Use bfd_get_filename throughout bfd gdb-buildbot
2020-06-13  6:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-19  1:28 [binutils-gdb] PR25882, .gnu.attributes are not checked for shared libraries gdb-buildbot
2020-05-19  1:28 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-18 21:27 [binutils-gdb] FIXME for merging of e_flags and .gnu.attributes gdb-buildbot
2020-05-18 21:27 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-18 17:29 [binutils-gdb] ppc32 merging of e_flags from dynamic objects gdb-buildbot
2020-05-18 17:29 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-18 13:28 [binutils-gdb] Add support for NetBSD thread events (create, exit) gdb-buildbot
2020-05-18 13:28 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-18  9:30 [binutils-gdb] Revert "2020-04-29 Sterling Augustine <saugustine@google.com>" gdb-buildbot
2020-05-18  9:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-18  5:31 [binutils-gdb] Remove duplicated creation of "frame" command and "f" alias gdb-buildbot
2020-05-18  5:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-18  1:32 [binutils-gdb] Implement debugging of WOW64 processes in gdbserver gdb-buildbot
2020-05-18  1:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-17 21:33 [binutils-gdb] Calculate size of array of stubbed type gdb-buildbot
2020-05-17 21:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-17 17:35 [binutils-gdb] Adjust array pretty printer tests to the new format gdb-buildbot
2020-05-17 17:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-17 13:35 [binutils-gdb] AArch64: add GAS support for UDF instruction gdb-buildbot
2020-05-17 13:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-17  9:37 [binutils-gdb] Use thiscall calling convention for class members gdb-buildbot
2020-05-17  9:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-17  5:37 [binutils-gdb] xtensa: fix XTENSA_NDIFF handling for PR ld/25861 gdb-buildbot
2020-05-17  5:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-16 21:38 [binutils-gdb] gdb: fix shellcheck warnings SC2154 (referenced but not assigned) in gdbarch.sh gdb-buildbot
2020-05-16 21:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-16  9:04 [binutils-gdb] gdb: fix shellcheck warnings SC2006 (use $() instead of ``) in gdbarch.sh gdb-buildbot
2020-05-16  9:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-15 18:35 [binutils-gdb] 2020-04-29 Sterling Augustine <saugustine@google.com> gdb-buildbot
2020-05-15 18:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-15 14:37 [binutils-gdb] Sync config and libiberty with GCC gdb-buildbot
2020-05-15 14:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-15 10:01 [binutils-gdb] gdb: fix duplicate test names in gdb.base/break.exp gdb-buildbot
2020-05-15 10:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-15  4:24 [binutils-gdb] Fix Ada crash with .debug_types gdb-buildbot
2020-05-15  4:24 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-14 17:03 [binutils-gdb] Add basic event handling in the NetBSD target gdb-buildbot
2020-05-14 17:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-14 11:17 [binutils-gdb] Also use unsigned 8-bit immediate values for the LDRC and SETRC insns gdb-buildbot
2020-05-14 11:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-14  5:39 [binutils-gdb] Remove some dead code gdb-buildbot
2020-05-14  5:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-13 18:28 [binutils-gdb] Updated Serbian translation for the binutils sub-directory, and Swedish translation for the opcodes sub-directory gdb-buildbot
2020-05-13 18:28 ` Failures on Fedora-i686, 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-13 12:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-13  7:16 [binutils-gdb] [gdb/testsuite] Add xfails for PR gcc/90232 gdb-buildbot
2020-05-13  7:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-11 23:30 [binutils-gdb] Fix array pretty formatter gdb-buildbot
2020-05-11 23:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-11 21:37 [binutils-gdb] [gdb] Fix range loop index in find_method gdb-buildbot
2020-05-11 21:37 ` Failures on Fedora-i686, 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-11 19:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-11 17:32 [binutils-gdb] gdb: fix shellcheck warning in update-freebsd.sh gdb-buildbot
2020-05-11 17:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-11 15:36 [binutils-gdb] Allow Python commands to be in class_tui gdb-buildbot
2020-05-11 15:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-11 13:36 [binutils-gdb] gdb: Fix toplevel types with -fdebug-types-section gdb-buildbot
2020-05-11 13:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-11 11:40 [binutils-gdb] gdb: use gdb:hash_enum as hash function in offset_map_type gdb-buildbot
2020-05-11 11:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-11  9:45 [binutils-gdb] Rebase libiberty source with latest changes from gcc gdb-buildbot
2020-05-11  9:45 ` Failures on Fedora-i686, 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-11  5:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-11  3:57 [binutils-gdb] [gdb/testsuite] Remove KFAIL from gdb.base/info-macros.exp gdb-buildbot
2020-05-11  3:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-11  2:01 [binutils-gdb] [gdb/testsuite] Add PR number in KFAIL in gdb.ada/array_ptr_renaming.exp gdb-buildbot
2020-05-11  2:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-10 21:14 [binutils-gdb] alpha-vms: divide by zero gdb-buildbot
2020-05-10 22:27 ` Failures on Fedora-i686, 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-10 18:12 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-10 16:17 [binutils-gdb] gdbsupport: include cstdlib in common-defs.h gdb-buildbot
2020-05-10 16:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-10 14:20 [binutils-gdb] Fix remaining inline/tailcall unwinding breakage for x86_64 gdb-buildbot
2020-05-10 14:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-10  9:54 [binutils-gdb] Fix comments and whitespace in lookup_cmd_composition gdb-buildbot
2020-05-10  9:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-09 20:25 [binutils-gdb] [gdb/testsuite] Add target board debug-types gdb-buildbot
2020-05-09 20:25 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-09 16:53 [binutils-gdb] gdb/testsuite: Remove build paths from test names gdb-buildbot
2020-05-09 18:43 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-09 16:24 [binutils-gdb] Remove symbol_get_demangled_name gdb-buildbot
2020-05-09 16:24 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-09 14:26 [binutils-gdb] Fix Rust test cases gdb-buildbot
2020-05-09 14:27 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-09 10:04 [binutils-gdb] Don't call compute_and_set_names for partial symbols gdb-buildbot
2020-05-09 10:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-09  8:18 [binutils-gdb] Use the new add_psymbol_to_list overload gdb-buildbot
2020-05-09  8:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-09  6:26 [binutils-gdb] Introduce new add_psymbol_to_list overload gdb-buildbot
2020-05-09  6:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-09  0:25 [binutils-gdb] Move the rust "{" hack gdb-buildbot
2020-05-09  0:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-08 22:23 [binutils-gdb] Convert symbol_set_demangled_name to a method gdb-buildbot
2020-05-08 22:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-08 20:06 [binutils-gdb] [gdb/testsuite] Fix language in dw2-bad-mips-linkage-name.exp gdb-buildbot
2020-05-08 20:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-08 17:35 [binutils-gdb] Update test cases that work with minimal encodings gdb-buildbot
2020-05-08 17:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-08 15:48 [binutils-gdb] Add Python support for dynamic types gdb-buildbot
2020-05-08 15:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-08 13:32 [binutils-gdb] Add tests for Ada changes gdb-buildbot
2020-05-08 13:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-08 11:53 [binutils-gdb] Update Ada ptype support for dynamic types gdb-buildbot
2020-05-08 11:53 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-08  7:45 [binutils-gdb] Add support for dynamic type lengths gdb-buildbot
2020-05-08  7:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-08  5:54 [binutils-gdb] Rewrite the existing variant part code gdb-buildbot
2020-05-08  5:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-08  4:08 [binutils-gdb] Prefer existing data when evaluating DWARF expression gdb-buildbot
2020-05-08  4:08 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-08  1:49 [binutils-gdb] Allow DWARF expression to push the initial address gdb-buildbot
2020-05-08  1:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-07 19:36 [binutils-gdb] Add WOW64 exception numbers to $_siginfo.ExceptionCode enum gdb-buildbot
2020-05-07 19:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-07 17:39 [binutils-gdb] Move OpenBSD-only functions from inf-ptrace to obsd-nat gdb-buildbot
2020-05-07 17:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-07 15:18 [binutils-gdb] [gdb/testsuite] Reset errcnt in clean_restart gdb-buildbot
2020-05-07 15:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-07 12:31 [binutils-gdb] Fix Windows debugging regression gdb-buildbot
2020-05-07 12:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-07  9:40 [binutils-gdb] [gdb/testsuite] Compile dwzbuildid-mismatch more quietly gdb-buildbot
2020-05-07  9:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-07  2:42 [binutils-gdb] [gdb/contrib] Use temp dir for gdb-add-index in cc-with-tweaks.sh gdb-buildbot
2020-05-07  2:42 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-07  0:19 [binutils-gdb] Fix infinite loop in is_linked_with_cygwin_dll gdb-buildbot
2020-05-07  0:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-06 21:01 [binutils-gdb] Fix inline frame unwinding breakage gdb-buildbot
2020-05-06 21:01 ` Failures on Fedora-i686, 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-06 18:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-06 15:25 [binutils-gdb] [gdb/symtab] Prefer def over decl (inter-CU case) gdb-buildbot
2020-05-06 15:25 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-06 12:26 [binutils-gdb] Fix Ada crash with .debug_names gdb-buildbot
2020-05-06 12:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-06  9:55 [binutils-gdb] Remove iterate_over_inferiors gdb-buildbot
2020-05-06  9:55 ` Failures on Fedora-i686, 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-06  7:33 ` Failures on Fedora-i686, 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-06  4:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-05 22:49 [binutils-gdb] xtensa: fix PR ld/25861 gdb-buildbot
2020-05-05 22:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-05 19:06 [binutils-gdb] [gdb/testsuite] Fix .debug_ranges in gdb.mi/dw2-ref-missing-frame-func.c gdb-buildbot
2020-05-05 19:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-05 16:47 [binutils-gdb] [gdb/testsuite] Fix .debug_aranges in gdb.dlang/watch-loc.c gdb-buildbot
2020-05-05 16:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-05 14:55 [binutils-gdb] [gdb/symtab] Store external var decls in psymtab gdb-buildbot
2020-05-05 15:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-05  6:50 [binutils-gdb] gdb/infrun: switch the context before 'displaced_step_restore' gdb-buildbot
2020-05-05  6:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-05  5:03 [binutils-gdb] Disallow PC relative for CMPI on MC68000/10 gdb-buildbot
2020-05-05  5:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-05  2:33 [binutils-gdb] BFD: Exclude sections with no content from compress check gdb-buildbot
2020-05-05  2:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-05  0:46 [binutils-gdb] gdb, btrace: make record-btrace per-inferior gdb-buildbot
2020-05-05  0:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-04 22:50 [binutils-gdb] gdb, btrace: diagnose double and failed enable gdb-buildbot
2020-05-04 22:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-04 17:56 [binutils-gdb] [gdb] Fix hang after ext sigkill gdb-buildbot
2020-05-04 17:56 ` Failures on Fedora-i686, 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-04 16:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-04 14:05 [binutils-gdb] [gdb/testsuite] structured rename of jit test files gdb-buildbot
2020-05-04 14:05 ` Failures on Fedora-i686, 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-04 12:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-04 10:04 [binutils-gdb] elf: Strip zero-sized dynamic sections gdb-buildbot
2020-05-04 10:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-04  8:09 [binutils-gdb] alpha: Warn DT_TEXTREL with -M gdb-buildbot
2020-05-04  8:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-04  0:12 [binutils-gdb] Mark move constructors as "noexcept" gdb-buildbot
2020-05-04  0:12 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-03 20:34 [binutils-gdb] Disable nested function tests for clang gdb-buildbot
2020-05-03 20:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-03 18:02 [binutils-gdb] Add myself to gdb/MAINTAINERS gdb-buildbot
2020-05-03 18:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-03 16:28 [binutils-gdb] Fix compilation error with clang in gdb/testsuite/gdb.cp/exception.cc gdb-buildbot
2020-05-03 16:28 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-03 14:29 [binutils-gdb] Fix compilation error with clang in gdb/testsuite/gdb.trace/tspeed.c gdb-buildbot
2020-05-03 14:29 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-03 12:31 [binutils-gdb] Fix compilation error with clang in gdb/testsuite/gdb.base/jit-main.c gdb-buildbot
2020-05-03 12:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-03 10:32 [binutils-gdb] When bfd/pdp11.c was copied from bfd/aoutx.h, the #defines for external symbol types N_TEXT etc. were #undef'd and then #define'd with new values. But N_STAB was not changed even though the new value for N_EXT overlapped with it. This caused aout_link_write_symbols() to treat global symbols referenced in the source but defined in a linker script as undefined gdb-buildbot
2020-05-03 10:32 ` Failures on Fedora-i686, 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-03  6:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-03  4:18 [binutils-gdb] PowerPC64: remove empty .rela.dyn (.rela.branch_lt) gdb-buildbot
2020-05-03  4:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-02 13:45 [binutils-gdb] Fix gdb.base/attach-twice.c build on NetBSD gdb-buildbot
2020-05-02 13:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-02 11:46 [binutils-gdb] Fix the build of fork-running-state.c on NetBSD gdb-buildbot
2020-05-02 11:46 ` Failures on Fedora-i686, 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-02  9:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-02  7:51 [binutils-gdb] [PATCH v2] binutils: arm: Fix disassembly of conditional VDUPs gdb-buildbot
2020-05-02  7:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-02  6:00 [binutils-gdb] Remove obsolete and unused inf_ptrace_target::auxv_parse gdb-buildbot
2020-05-02  6:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-02  1:27 [binutils-gdb] gdb: is_linked_with_cygwin_dll: mention filename in warning messages gdb-buildbot
2020-05-02  1:27 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-01 23:39 [binutils-gdb] gdb: is_linked_with_cygwin_dll: handle import table not at beginning of .idata section gdb-buildbot
2020-05-01 23:42 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-01 21:13 [binutils-gdb] Stop the MIPS assembler from accepting ifunc symbols gdb-buildbot
2020-05-01 21:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-01 19:18 [binutils-gdb] Refactor delete_program_space as a destructor gdb-buildbot
2020-05-01 19:29 ` Failures on Fedora-i686, 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-01 12:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-01 10:59 [binutils-gdb] PR25827, Null pointer dereferencing in scan_unit_for_symbols gdb-buildbot
2020-05-01 10:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-01  9:03 [binutils-gdb] cpu, gas, opcodes: support for eBPF JMP32 instruction class gdb-buildbot
2020-05-01  9:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-01  7:02 [binutils-gdb] [gdb/testsuite] Fix maint-expand-symbols-header-file.exp for cc-with-gdb-index gdb-buildbot
2020-05-01  7:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-01  5:17 [binutils-gdb] PowerPC64 GOT reloc reserving PLT entry for ifunc gdb-buildbot
2020-05-01  5:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-05-01  3:29 [binutils-gdb] PowerPC64 GOT reloc optimisation gdb-buildbot
2020-05-01  3:29 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-30 23:27 [binutils-gdb] Fix OpenBSD build error gdb-buildbot
2020-04-30 23:27 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-30 21:26 [binutils-gdb] Use debug_printf in windows-nat.c gdb-buildbot
2020-04-30 21:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-30 19:09 [binutils-gdb] gdb: Don't corrupt completions hash when expanding the hash table gdb-buildbot
2020-04-30 19:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-30 16:00 [binutils-gdb] Better handling of realpath() failure in windows_make_so() on Cygwin gdb-buildbot
2020-04-30 16:00 ` Failures on Fedora-i686, 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-04-30 15:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-30 13:14 [binutils-gdb] PR25823, Use after free in bfd_hash_lookup gdb-buildbot
2020-04-30 13:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-30 10:53 [binutils-gdb] [PATCH v2 2/2] coff-go32: support extended relocations gdb-buildbot
2020-04-30 10:53 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-30  9:00 [binutils-gdb] Implement IP_STAT+IP_STATUS (aliases of the same format) on NetBSD gdb-buildbot
2020-04-30  9:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-30  7:14 [binutils-gdb] The assembler only supports 32-bit stabs. So set sh_entsize unconditionally to 12 gdb-buildbot
2020-04-30  7:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-30  5:19 [binutils-gdb] Fixes for the magic number used in PDP11 AOUT binaries gdb-buildbot
2020-04-30  5:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-30  2:14 [binutils-gdb] [gdb] Fix missing symtab includes gdb-buildbot
2020-04-30  3:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-30  1:21 [binutils-gdb] [gdb] Expand symbolless symtabs using maint expand-symtabs gdb-buildbot
2020-04-30  1:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-29 20:57 [binutils-gdb] Remove gdb_fildes_t gdb-buildbot
2020-04-29 20:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-29 18:53 [binutils-gdb] Move gdb_notifier comment gdb-buildbot
2020-04-29 18:53 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-29 14:17 [binutils-gdb] Move event-loop.[ch] to gdbsupport/ gdb-buildbot
2020-04-29 14:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-29 10:11 [binutils-gdb] Introduce and use flush_streams gdb-buildbot
2020-04-29 10:11 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-29  8:23 [binutils-gdb] Use warning in event-loop gdb-buildbot
2020-04-29  8:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-29  0:55 [binutils-gdb] Move gdb_select.h to gdbsupport/ gdb-buildbot
2020-04-29  0:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-28 23:06 [binutils-gdb] Move event-loop configury to common.m4 gdb-buildbot
2020-04-28 23:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-28 20:56 [binutils-gdb] Move start_event_loop out of event-loop.c gdb-buildbot
2020-04-28 20:56 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-28 18:54 [binutils-gdb] Update my email address on MAINTAINERS gdb-buildbot
2020-04-28 18:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-28 16:39 [binutils-gdb] [gdb/testsuite] Fix gdb.ada/catch_ex_std.exp gnatlink FAIL gdb-buildbot
2020-04-28 16:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-28 14:48 [binutils-gdb] Implement IP_MINIMAL and IP_ALL on NetBSD gdb-buildbot
2020-04-28 14:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-28 12:30 [binutils-gdb] Implement "info proc cmdline" for NetBSD gdb-buildbot
2020-04-28 12:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-28  4:05 [binutils-gdb] Implement "info proc mappings" for NetBSD gdb-buildbot
2020-04-28  4:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-27 19:18 [binutils-gdb] gdb: fix undefined behavior reported in copy_bitwise gdb-buildbot
2020-04-27 19:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-27 17:08 [binutils-gdb] Avoid infinite recursion in get_msymbol_address gdb-buildbot
2020-04-27 17:08 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-27 14:54 [binutils-gdb] Skip separate debug files when handling copy relocations gdb-buildbot
2020-04-27 14:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-27 13:05 [binutils-gdb] Fix debugging of WOW64 processes gdb-buildbot
2020-04-27 13:11 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-27 10:51 [binutils-gdb] [gdb/testsuite] Fix -readnow FAIL in gdb.base/style.exp gdb-buildbot
2020-04-27 10:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-27  9:09 [binutils-gdb] [gdb/cli] Don't let python colorize strip leading newlines gdb-buildbot
2020-04-27  9:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-27  7:10 [binutils-gdb] gdb: move Tom de Vries to Global Maintainers gdb-buildbot
2020-04-27  7:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-27  5:12 [binutils-gdb] Partially revert my UB fix in record_line gdb-buildbot
2020-04-27  5:12 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-26 23:48 [binutils-gdb] Implement stopped_by_sw_breakpoint for Windows gdbserver gdb-buildbot
2020-04-26 23:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-26 21:51 [binutils-gdb] Introduce win32_target_ops::decr_pc_after_break gdb-buildbot
2020-04-26 21:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-26 19:55 [binutils-gdb] Add read_pc / write_pc support to win32-low gdb-buildbot
2020-04-26 19:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-26 18:15 [binutils-gdb] Make last_wait_event static gdb-buildbot
2020-04-26 18:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-26 15:55 [binutils-gdb] Move wait_for_debug_event to nat/windows-nat.c gdb-buildbot
2020-04-26 15:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-26 14:13 [binutils-gdb] Introduce fetch_pending_stop gdb-buildbot
2020-04-26 14:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-26 10:15 [binutils-gdb] Share handle_exception gdb-buildbot
2020-04-26 10:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-25 23:59 [binutils-gdb] Share some Windows-related globals gdb-buildbot
2020-04-25 23:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-25 21:00 [binutils-gdb] Share get_image_name between gdb and gdbserver gdb-buildbot
2020-04-25 21:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-25 11:20 [binutils-gdb] Call CloseHandle from ~windows_thread_info gdb-buildbot
2020-04-25 11:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-25  4:16 [binutils-gdb] Share Windows thread-suspend and -resume code gdb-buildbot
2020-04-25  4:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-25  1:35 [binutils-gdb] Use lwp, not tid, for Windows thread id gdb-buildbot
2020-04-25  1:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-24 22:41 [binutils-gdb] Make windows_thread_info::name a unique_xmalloc_ptr gdb-buildbot
2020-04-24 22:41 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-24 19:34 [binutils-gdb] Change two windows_thread_info members to "bool" gdb-buildbot
2020-04-24 19:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-24 16:45 [binutils-gdb] Use new and delete for windows_thread_info gdb-buildbot
2020-04-24 16:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-24 13:55 [binutils-gdb] Share windows_thread_info between gdb and gdbserver gdb-buildbot
2020-04-24 13:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-24 11:09 [binutils-gdb] Rename windows_thread_info::id to "tid" gdb-buildbot
2020-04-24 11:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-24  8:35 [binutils-gdb] Rename win32_thread_info to windows_thread_info gdb-buildbot
2020-04-24  8:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-24  5:56 [binutils-gdb] Remove the "next" field from windows_thread_info gdb-buildbot
2020-04-24  5:56 ` Failures on Fedora-i686, 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-24  3:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-24  0:15 [binutils-gdb] Remove objfile parameter from read_gdb_index_from_buffer gdb-buildbot
2020-04-24  0:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-23 21:33 [binutils-gdb] [gdb/testsuite] Fix imported-unit.exp FAIL without psymtabs gdb-buildbot
2020-04-23 21:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-23 18:44 [binutils-gdb] [gdb/testsuite] Add gcc/94469 xfails to gdb.ada/call_pn.exp gdb-buildbot
2020-04-23 18:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-23 15:59 [binutils-gdb] Define NetBSD specific skip_solib_resolver gdb-buildbot
2020-04-23 15:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-23 13:05 [binutils-gdb] DWARFv5: Info address command error in gdb with DWARFfv5 gdb-buildbot
2020-04-23 13:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-23 10:20 [binutils-gdb] DWARFv5: Handle location list for split dwarf gdb-buildbot
2020-04-23 10:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-23  8:00 [binutils-gdb] Support for DW_AT_loclists_base and DW_FORM_loclistx gdb-buildbot
2020-04-23  8:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-23  5:40 [binutils-gdb] gdb: small cleanups in dwarf2_psymtab constructors gdb-buildbot
2020-04-23  5:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-23  0:34 [binutils-gdb] ld: Fix several 32-bit SPARC plugin tests gdb-buildbot
2020-04-23  0:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-22 21:47 [binutils-gdb] [gdb/symtab] Fix check-psymtab failure for inline function gdb-buildbot
2020-04-22 21:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-22 18:57 [binutils-gdb] Add support for intel TSXLDTRK instructions$ gdb-buildbot
2020-04-22 18:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-22 16:13 [binutils-gdb] Implement basic threading support in the NetBSD target gdb-buildbot
2020-04-22 16:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-22 13:35 [binutils-gdb] Select variant field when printing variant gdb-buildbot
2020-04-22 13:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-22 10:36 [binutils-gdb] Fix build breakage in NetBSD tdep files gdb-buildbot
2020-04-22 10:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-21 21:05 [binutils-gdb] elf: Remove zero-sized relocation section from section group gdb-buildbot
2020-04-21 21:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-21 18:26 [binutils-gdb] Fix attributes of typed enums of typedefs gdb-buildbot
2020-04-21 18:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-21 15:38 [binutils-gdb] Fix DWARF disassembly of DW_OP_const_type gdb-buildbot
2020-04-21 15:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-21 12:56 [binutils-gdb] gdb: use bfd_get_section_contents to read section contents in is_linked_with_cygwin_dll gdb-buildbot
2020-04-21 12:56 ` Failures on Fedora-i686, 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-21 10:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-21  7:32 [binutils-gdb] Avoid assertion failure due to complex type change gdb-buildbot
2020-04-21  7:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-21  4:59 [binutils-gdb] Micro-optimize partial_die_info::read gdb-buildbot
2020-04-21  4:59 ` Failures on Fedora-i686, 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-21  2:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-20 22:47 [binutils-gdb] gdb/testsuite: Add support for DW_LNS_set_file to DWARF compiler gdb-buildbot
2020-04-20 23:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-20 20:48 [binutils-gdb] gdb/testsuite: Add compiler options parameter to function_range helper gdb-buildbot
2020-04-20 20:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-20 17:52 [binutils-gdb] [gdb/testsuite] Don't use O2 for inlining in break-inline-psymtab.exp gdb-buildbot
2020-04-20 17:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-20 13:48 [binutils-gdb] coff-go32-exe: support variable-length stubs gdb-buildbot
2020-04-20 15:29 ` Failures on Fedora-i686, 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-20 12:37 ` Failures on Fedora-i686, 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-20  9:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-20  2:05 [binutils-gdb] gdbserver/linux-low: turn 'supports_range_stepping' into a method gdb-buildbot
2020-04-20  2:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-20  0:00 [binutils-gdb] gdbserver/linux-low: turn 'emit_ops' into a method gdb-buildbot
2020-04-20  0:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-19 21:43 [binutils-gdb] gdbserver/linux-low: turn fast tracepoint ops into methods gdb-buildbot
2020-04-19 21:43 ` Failures on Fedora-i686, 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-19 19:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-19 16:59 [binutils-gdb] gdbserver/linux-low: turn 'supports_tracepoints' into a method gdb-buildbot
2020-04-19 16:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-19 14:22 [binutils-gdb] gdbserver/linux-low: turn 'process_qsupported' into a method gdb-buildbot
2020-04-19 14:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-19 11:32 [binutils-gdb] gdbserver/linux-low: turn 'prepare_to_resume' into a method gdb-buildbot
2020-04-19 11:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-19  8:57 [binutils-gdb] gdbserver/linux-low: turn process/thread addition/deletion ops into methods gdb-buildbot
2020-04-19  8:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-19  6:41 [binutils-gdb] gdbserver/linux-low: turn 'siginfo_fixup' into a method gdb-buildbot
2020-04-19  6:41 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-19  4:30 [binutils-gdb] gdbserver/linux-low: turn '{collect, supply}_ptrace_register' into methods gdb-buildbot
2020-04-19  4:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-19  2:25 [binutils-gdb] gdbserver/linux-low: turn watchpoint ops into methods gdb-buildbot
2020-04-19  2:25 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-18 23:53 [binutils-gdb] gdbserver/linux-low: turn 'insert_point' and 'remove_point' into methods gdb-buildbot
2020-04-18 23:53 ` Failures on Fedora-i686, 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-18 19:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-18 16:47 [binutils-gdb] gdbserver/linux-low: turn 'breakpoint_at' into a method gdb-buildbot
2020-04-18 16:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-18 14:29 [binutils-gdb] gdbserver/linux-low: turn the 'decr_pc_after_break' field into a method gdb-buildbot
2020-04-18 14:29 ` Failures on Fedora-i686, 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-18 11:35 ` Failures on Fedora-i686, 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-18  8:42 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-18  5:47 [binutils-gdb] gdbserver/linux-low: turn 'breakpoint_kind_from_{pc, current_state}' into methods gdb-buildbot
2020-04-18  5:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-18  3:06 [binutils-gdb] gdbserver/linux-low: turn 'get_pc' and 'set_pc' into methods gdb-buildbot
2020-04-18  3:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-18  0:04 [binutils-gdb] gdbserver/linux-low: turn some more static functions into private methods gdb-buildbot
2020-04-18  0:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-17 18:27 [binutils-gdb] gdbserver/linux-low: turn 'cannot_{fetch/store}_register' into methods gdb-buildbot
2020-04-17 18:27 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-17 15:28 [binutils-gdb] gdbserver/linux-low: turn 'regs_info' into a method gdb-buildbot
2020-04-17 15:28 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-17 12:38 [binutils-gdb] gdbserver/linux-low: turn 'arch_setup' into a method gdb-buildbot
2020-04-17 12:38 ` Failures on Fedora-i686, 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-17  9:43 ` Failures on Fedora-i686, 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-17  7:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-17  4:35 [binutils-gdb] gdbserver: make linux target op 'cannot_store_register' a predicate function gdb-buildbot
2020-04-17  4:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-17  2:10 [binutils-gdb] Add support for intel SERIALIZE instruction gdb-buildbot
2020-04-17  2:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-16 23:19 [binutils-gdb] [gdb/testsuite] Fix silent timeout in gdb.multi/multi-target.exp gdb-buildbot
2020-04-16 23:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-16 20:26 [binutils-gdb] [gdb/ada] Fix -readnow FAILs gdb-buildbot
2020-04-16 20:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-16 17:34 [binutils-gdb] [gdb] Use partial symbol table to find language for main gdb-buildbot
2020-04-16 17:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-16 14:39 [binutils-gdb] [gdb/testsuite] Accept new complex print style in mixed-lang-stack.exp gdb-buildbot
2020-04-16 14:39 ` Failures on Fedora-i686, 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-16 11:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-16  8:49 [binutils-gdb] Fix an undefined behavior in record_line gdb-buildbot
2020-04-16  8:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-16  6:02 [binutils-gdb] Fix the resizing condition of the line table gdb-buildbot
2020-04-16  6:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-16  3:15 [binutils-gdb] x86: Only allow S + A relocations against absolute symbol gdb-buildbot
2020-04-16  3:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-16  0:15 [binutils-gdb] Fix value_literal_complex comment gdb-buildbot
2020-04-16  0:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-15 21:30 [binutils-gdb] Add _Complex type support to C parser gdb-buildbot
2020-04-15 21:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-15 18:33 [binutils-gdb] Implement complex arithmetic gdb-buildbot
2020-04-15 18:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-15 15:38 [binutils-gdb] Change the C parser to allow complex constants gdb-buildbot
2020-04-15 15:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-15 12:44 [binutils-gdb] Change how complex types are printed in C gdb-buildbot
2020-04-15 12:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-15  9:52 [binutils-gdb] Add accessors for members of complex numbers gdb-buildbot
2020-04-15  9:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-15  7:09 [binutils-gdb] Change how complex types are created gdb-buildbot
2020-04-15  7:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-15  4:22 [binutils-gdb] Move Rust union tests to new file gdb-buildbot
2020-04-15  4:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-15  1:34 [binutils-gdb] Remove local variable from simple.rs test case gdb-buildbot
2020-04-15  1:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-14 22:39 [binutils-gdb] gdb/infrun: stop all threads if there exists a non-stop target gdb-buildbot
2020-04-14 22:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-14 19:49 [binutils-gdb] gdb: define convenience function 'exists_non_stop_target' gdb-buildbot
2020-04-14 19:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-14 17:00 [binutils-gdb] Allow pointer arithmetic with integer references gdb-buildbot
2020-04-14 17:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-14 14:15 [binutils-gdb] gdb/remote: do not check for null_ptid in stop reply gdb-buildbot
2020-04-14 14:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-14 11:25 [binutils-gdb] Avoid copying in lookup_name_info gdb-buildbot
2020-04-14 11:25 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-14  8:42 [binutils-gdb] Avoid some copying in psymtab.c gdb-buildbot
2020-04-14  8:42 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-14  6:15 [binutils-gdb] Arm: Fix LSB of GOT for Thumb2 only PLT gdb-buildbot
2020-04-14  6:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-14  3:40 [binutils-gdb] Arm: Fix thumb2 PLT branch offsets gdb-buildbot
2020-04-14  3:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-14  0:57 [binutils-gdb] include: Sync plugin-api.h with GCC gdb-buildbot
2020-04-14  0:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-13 22:10 [binutils-gdb] mmo.c: Fix ld testsuite regression "objcopy executable (pr25662)" gdb-buildbot
2020-04-13 22:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-13 19:16 [binutils-gdb] Fix py-tui.c build problem gdb-buildbot
2020-04-13 19:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-13 16:22 [binutils-gdb] Don't pass NULL to memcpy in gdb gdb-buildbot
2020-04-13 16:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-13 11:14 [binutils-gdb] alpha-coff: unitialised read gdb-buildbot
2020-04-13 11:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-13  8:46 [binutils-gdb] alpha-vms: sanity checks for image_write gdb-buildbot
2020-04-13  8:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-13  6:31 [binutils-gdb] tekhex: Uninitialised read gdb-buildbot
2020-04-13  6:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-13  1:14 [binutils-gdb] Change ada_which_variant_applies to value API gdb-buildbot
2020-04-13  1:14 ` Failures on Fedora-i686, 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-12 22:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-12 19:51 [binutils-gdb] [PowerPC] Fix debug register issues in ppc-linux-nat gdb-buildbot
2020-04-12 19:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-12 17:13 [binutils-gdb] [PowerPC] Move up some register access routines gdb-buildbot
2020-04-12 17:13 ` Failures on Fedora-i686, 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-12 11:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-12  7:18 [binutils-gdb] gdb: rename partial symtab expand functions of debug info readers using legacy_psymtab gdb-buildbot
2020-04-12  7:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-12  4:35 [binutils-gdb] gdb: rename partial_symtab::read_dependencies to expand_dependencies gdb-buildbot
2020-04-12  4:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-12  2:17 [binutils-gdb] gdb: remove discard_psymtab function gdb-buildbot
2020-04-12  2:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-11 14:29 [binutils-gdb] Fix comment in dwarf2/attribute.h gdb-buildbot
2020-04-11 14:29 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-11  7:39 [binutils-gdb] gdbsupport: Resolve shellcheck issues in create-version.sh script gdb-buildbot
2020-04-11  7:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-11  5:22 [binutils-gdb] Support AT_BSDFLAGS on FreeBSD gdb-buildbot
2020-04-11  5:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-11  2:49 [binutils-gdb] Change two functions to be methods on struct attribute gdb-buildbot
2020-04-11  2:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-11  0:00 [binutils-gdb] Move DWARF-constant stringifying code to new file gdb-buildbot
2020-04-11  0:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-10 21:07 [binutils-gdb] Rewrite new die_info methods gdb-buildbot
2020-04-10 21:07 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-10 18:16 [binutils-gdb] Change two more functions to be methods on die_info gdb-buildbot
2020-04-10 18:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-10 15:27 [binutils-gdb] Remove sibling_die gdb-buildbot
2020-04-10 15:27 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-10 12:55 [binutils-gdb] Change dwarf2_attr_no_follow to be a method gdb-buildbot
2020-04-10 12:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-10 11:01 [binutils-gdb] Remove dwarf2_cu::base_known gdb-buildbot
2020-04-10 11:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-10  8:35 [binutils-gdb] Move die_info to new header gdb-buildbot
2020-04-10  8:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-10  5:55 [binutils-gdb] Move more code to line-header.c gdb-buildbot
2020-04-10  5:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-10  1:19 [binutils-gdb] Convert read_indirect_line_string to a method gdb-buildbot
2020-04-10  3:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-10  0:04 [binutils-gdb] Trivial fix in dwarf_decode_macro_bytes gdb-buildbot
2020-04-10  0:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-09 22:15 [binutils-gdb] Use a const dwarf2_section_info in macro reader gdb-buildbot
2020-04-09 22:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-09 19:47 [binutils-gdb] Use a const line_header in macro reader gdb-buildbot
2020-04-09 19:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-09 13:46 [binutils-gdb] Add dwarf2_section_info::read_string method gdb-buildbot
2020-04-09 13:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-09 11:35 [binutils-gdb] Convert dwarf2_section_buffer_overflow_complaint to a method gdb-buildbot
2020-04-09 11:35 ` Failures on Fedora-i686, 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-09  9:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-09  7:17 [binutils-gdb] Split dwarf_decode_macros into two overloads gdb-buildbot
2020-04-09  7:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-09  5:29 [binutils-gdb] Change dwarf_decode_macro_bytes calling convention gdb-buildbot
2020-04-09  5:29 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-08 21:24 [binutils-gdb] Re: H8300 use of uninitialised value gdb-buildbot
2020-04-08 21:24 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-08 18:50 [binutils-gdb] Re: i386msdos uninitialised read gdb-buildbot
2020-04-08 18:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-08 17:03 [binutils-gdb] Re: ARC: Use of uninitialised value gdb-buildbot
2020-04-08 17:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-08 14:34 [binutils-gdb] alpha-vms: Sanity check ETIR__C_CTL_DFLOC index gdb-buildbot
2020-04-08 14:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-08 12:46 [binutils-gdb] Fix error message in compile-object-load.c gdb-buildbot
2020-04-08 12:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-08  6:42 [binutils-gdb] [gdb] Print user/includes fields for maint commands gdb-buildbot
2020-04-08  6:42 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-08  4:45 [binutils-gdb] gdb/riscv: Apply NaN boxing when writing return values into registers gdb-buildbot
2020-04-08  4:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-08  2:30 [binutils-gdb] arc: Use correct string when printing bfd DEBUG data gdb-buildbot
2020-04-08  2:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-08  0:44 [binutils-gdb] PR25662, invalid sh_offset for first section in segment with phdrs gdb-buildbot
2020-04-08  0:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-07 22:20 [binutils-gdb] bfd: Add a bfd_boolean argument to bfd_get_symbol_version_string gdb-buildbot
2020-04-07 22:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-07 20:33 [binutils-gdb] Uninitialised memory read in z80-dis.c gdb-buildbot
2020-04-07 20:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-07 18:22 [binutils-gdb] gdb: bool-ify follow_fork gdb-buildbot
2020-04-07 18:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-07 16:22 [binutils-gdb] Add code to the BFD library to handle opening files with pathnames longer than MAX_PATH on Win32 systems gdb-buildbot
2020-04-07 16:22 ` Failures on Fedora-i686, 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-07 14:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-07 12:06 [binutils-gdb] bfd: Change num_group to unsigned int gdb-buildbot
2020-04-07 12:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-07  9:54 [binutils-gdb] include: Sync plugin-api.h with GCC gdb-buildbot
2020-04-07  9:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-07  6:14 [binutils-gdb] [gdb] Print user for maint info psymtabs gdb-buildbot
2020-04-07  6:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-07  3:52 [binutils-gdb] Overlarge allocation in _bfd_generic_read_ar_hdr_mag gdb-buildbot
2020-04-07  3:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-07  2:06 [binutils-gdb] Mention .tdata in comment in _bfd_elf_tls_setup() gdb-buildbot
2020-04-07  2:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-06 23:55 [binutils-gdb] ECOFF archive uninitialised read gdb-buildbot
2020-04-06 23:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-06 21:59 [binutils-gdb] i386msdos uninitialised read gdb-buildbot
2020-04-06 21:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-06 17:30 [binutils-gdb] XCOFF64 uninitialised read gdb-buildbot
2020-04-06 17:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-06 15:42 [binutils-gdb] H8300 use of uninitialised value gdb-buildbot
2020-04-06 15:42 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-06 13:12 [binutils-gdb] ARC: Use of uninitialised value gdb-buildbot
2020-04-06 13:12 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-06 11:24 [binutils-gdb] NS32K arg_bufs uninitialised gdb-buildbot
2020-04-06 11:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-06  8:23 [binutils-gdb] s12z disassembler tidy gdb-buildbot
2020-04-06  8:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-05 21:48 [binutils-gdb] Make dwarf2_evaluate_property parameter const gdb-buildbot
2020-04-05 21:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-05 20:00 [binutils-gdb] [gdb/testsuite] Fix gdb.threads/omp-par-scope.exp XPASS gdb-buildbot
2020-04-05 20:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-05 18:13 [binutils-gdb] gdb: remove HAVE_DECL_PTRACE gdb-buildbot
2020-04-05 18:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-05 16:01 [binutils-gdb] Update the return type of gdb_ptrace to be more flexible gdb-buildbot
2020-04-05 16:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-05 14:12 [binutils-gdb] Fix assert in c-exp.y gdb-buildbot
2020-04-05 14:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-05 11:56 [binutils-gdb] Avoid stringop-truncation errors gdb-buildbot
2020-04-05 11:56 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-05  8:19 [binutils-gdb] Fix Ada val_print removal regression gdb-buildbot
2020-04-05  8:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-05  6:28 [binutils-gdb] Inherit ppc_nbsd_nat_target from nbsd_nat_target gdb-buildbot
2020-04-05  6:28 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-05  4:40 [binutils-gdb] Add support for NetBSD threads in hppa-nbsd-nat.c gdb-buildbot
2020-04-05  4:43 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-05  0:32 [binutils-gdb] Add support for NetBSD threads in ppc-nbsd-nat.c gdb-buildbot
2020-04-05  0:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-04 22:44 [binutils-gdb] plugin: Don't invoke LTO-wrapper gdb-buildbot
2020-04-04 22:44 ` Failures on Fedora-i686, 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-04 20:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-04 18:44 [binutils-gdb] XCOFF uninitialized read gdb-buildbot
2020-04-04 18:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-04 12:57 [binutils-gdb] PowerPC disassembly of odd sized sections gdb-buildbot
2020-04-04 12:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-04  9:04 [binutils-gdb] Disable get_ptrace_pid for NetBSD gdb-buildbot
2020-04-04  9:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-04  7:16 [binutils-gdb] Fix discrepancies in nm's --line-number output by adding support for the DW_AT_specification DWARF Attttribute gdb-buildbot
2020-04-04  7:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-04  5:30 [binutils-gdb] Include: Sync lto-symtab.h and plugin-api.h with GCC gdb-buildbot
2020-04-04  5:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-03 23:08 [binutils-gdb] Avoid get_ptrace_pid() usage on NetBSD in x86-bsd-nat.c gdb-buildbot
2020-04-03 23:08 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-03 21:20 [binutils-gdb] gdb: Handle W and X remote packets without giving a warning gdb-buildbot
2020-04-03 21:21 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-03 18:52 [binutils-gdb] gdb/testsuite/fortran: Add mixed language stack test gdb-buildbot
2020-04-03 18:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-03 17:03 [binutils-gdb] gdb: Remove C++ symbol aliases from completion list gdb-buildbot
2020-04-03 17:08 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-03 14:34 [binutils-gdb] gdb: Restructure the completion_tracker class gdb-buildbot
2020-04-03 14:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-03 12:47 [binutils-gdb] [gdb/testsuite] Fix gdb.opt/inline-locals.exp KFAILs gdb-buildbot
2020-04-03 12:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-03 10:27 [binutils-gdb] Additional c99 elfxx-riscv.c fix gdb-buildbot
2020-04-03 10:27 ` Failures on Fedora-i686, 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-03  8:41 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-03  6:49 [binutils-gdb] Fix seg-fault in strip when copying a file containing corrupt secondary relocs gdb-buildbot
2020-04-03  6:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-02 16:17 [binutils-gdb] Rename the read symbol to xread gdb-buildbot
2020-04-02 16:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-02 14:31 [binutils-gdb] Add support for NetBSD threads in sparc-nat.c gdb-buildbot
2020-04-02 14:31 ` Failures on Fedora-i686, 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-02 11:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-02 10:00 [binutils-gdb] Fix a small set of Z80 problems gdb-buildbot
2020-04-02 10:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-02  7:41 [binutils-gdb] Remove a double free in the BFD library triggered when parsing a corrupt file gdb-buildbot
2020-04-02  7:41 ` Failures on Fedora-i686, 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-02  5:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-02  3:22 [binutils-gdb] Inherit sh_nbsd_nat_target from nbsd_nat_target gdb-buildbot
2020-04-02  3:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-02  1:33 [binutils-gdb] Include missing header to get missing declarations gdb-buildbot
2020-04-02  1:42 ` Failures on Fedora-i686, 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-01 23:29 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-01 21:17 [binutils-gdb] [gdb] Skip imports of c++ CUs gdb-buildbot
2020-04-01 21:17 ` Failures on Fedora-i686, 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-01 19:29 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-01 17:21 [binutils-gdb] Initialize base_value in pascal_object_print_value gdb-buildbot
2020-04-01 17:21 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-01 15:10 [binutils-gdb] arc: Migrate to new target features gdb-buildbot
2020-04-01 15:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-01 13:00 [binutils-gdb] Fix dwarf2_name caching bug gdb-buildbot
2020-04-01 13:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-01 10:48 [binutils-gdb] gdb: define builtin long type to be 64 bits on amd64 Cygwin gdb-buildbot
2020-04-01 10:48 ` Failures on Fedora-i686, 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-01  6:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-01  4:52 [binutils-gdb] gdb: rename i386-cygwin-tdep.c to i386-windows-tdep.c gdb-buildbot
2020-04-01  4:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-01  2:03 [binutils-gdb] gdb: add Windows OS ABI gdb-buildbot
2020-04-01  3:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-04-01  0:44 [binutils-gdb] gdb: move enum gdb_osabi to osabi.h gdb-buildbot
2020-04-01  0:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-31 21:47 [binutils-gdb] gdb: recognize 64 bits Windows executables as Cygwin osabi gdb-buildbot
2020-03-31 21:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-31 18:35 [binutils-gdb] [gdb/testsuite] Add cache_verify option for gdb_caching_procs gdb-buildbot
2020-03-31 18:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-31 16:48 [binutils-gdb] PR25675: SIGSEGV in bfd_octets_per_byte gdb-buildbot
2020-03-31 16:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-31 15:09 [binutils-gdb] asan: alpha-vms: null dereference gdb-buildbot
2020-03-31 15:16 ` Failures on Fedora-i686, 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-03-31 10:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-31  1:34 [binutils-gdb] Add C parser support for "restrict" and "_Atomic" gdb-buildbot
2020-03-31  1:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-30 23:21 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAILs in mi-fortran-modules.exp gdb-buildbot
2020-03-30 23:21 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-30 21:33 [binutils-gdb] Add support for NetBSD threads in m68k-bsd-nat.c gdb-buildbot
2020-03-30 21:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-30 19:04 [binutils-gdb] m68k: bsd: Change type from char * to gdb_byte * gdb-buildbot
2020-03-30 19:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-30 17:17 [binutils-gdb] Inherit m68k_bsd_nat_target from nbsd_nat_target gdb-buildbot
2020-03-30 17:24 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-30 15:05 [binutils-gdb] Define _KERNTYPES in m68k-bsd-nat.c gdb-buildbot
2020-03-30 15:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-30 12:51 [binutils-gdb] Add support for NetBSD threads in alpha-bsd-nat.c gdb-buildbot
2020-03-30 12:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-30 11:04 [binutils-gdb] Remove unused code from alpha-bsd-nat.c gdb-buildbot
2020-03-30 11:08 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-30  6:46 [binutils-gdb] Define _KERNTYPES in alpha-bsd-nat.c gdb-buildbot
2020-03-30  6:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-30  4:57 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL in attach-many-short-lived-threads.exp gdb-buildbot
2020-03-30  4:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-30  1:01 [binutils-gdb] Inherit arm_netbsd_nat_target from nbsd_nat_target gdb-buildbot
2020-03-30  1:01 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-29 23:15 [binutils-gdb] Add support for NetBSD threads in x86-bsd-nat.c gdb-buildbot
2020-03-29 23:15 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-29 21:03 [binutils-gdb] Add support for threads in vax_bsd_nat_target gdb-buildbot
2020-03-29 21:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-29 19:17 [binutils-gdb] Add explicit cast to fix build of vax-bsd-nat.c gdb-buildbot
2020-03-29 19:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-29 16:59 [binutils-gdb] Inherit vax_bsd_nat_target from nbsd_nat_target gdb-buildbot
2020-03-29 16:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-29 11:26 [binutils-gdb] Define _KERNTYPES in ppc-nbsd-nat.c gdb-buildbot
2020-03-29 11:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-29  7:45 [binutils-gdb] Include netbsd-core.lo for all arm/mips NetBSD targets gdb-buildbot
2020-03-29  7:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-29  5:57 [binutils-gdb] [gdb/testsuite] Fix unrecognized debug output level 'statement-frontiers' message gdb-buildbot
2020-03-29  5:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-29  3:58 [binutils-gdb] [gdb/testsuite] Fix FAIL in gdb.base/printcmds.exp gdb-buildbot
2020-03-29  3:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-28 21:57 [binutils-gdb] Change extension language pretty-printers to use value API gdb-buildbot
2020-03-28 21:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-28 18:59 [binutils-gdb] Change print_field_values to use value-based API gdb-buildbot
2020-03-28 18:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-28 11:56 [binutils-gdb] Convert ada_val_print_ref to value-based API gdb-buildbot
2020-03-28 11:56 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-28 10:09 [binutils-gdb] Introduce ada_value_print_num gdb-buildbot
2020-03-28 10:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-28  8:03 [binutils-gdb] Rewrite ada_value_print_1 floating point case gdb-buildbot
2020-03-28  8:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-28  5:52 [binutils-gdb] Introduce ada_value_print_ptr gdb-buildbot
2020-03-28  5:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-28  2:53 [binutils-gdb] Rewrite ada_value_print_inner gdb-buildbot
2020-03-28  2:53 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-27 23:31 [binutils-gdb] Introduce cp_print_value gdb-buildbot
2020-03-27 23:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-27 21:17 [binutils-gdb] Introduce cp_print_value_fields and c_value_print_struct gdb-buildbot
2020-03-27 21:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-27 19:29 [binutils-gdb] Introduce c_value_print_array gdb-buildbot
2020-03-27 19:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-27 15:14 [binutils-gdb] Introduce c_value_print_int gdb-buildbot
2020-03-27 15:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-27 13:09 [binutils-gdb] Introduce c_value_print_ptr gdb-buildbot
2020-03-27 13:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-27 11:02 [binutils-gdb] Rewrite c_value_print_inner gdb-buildbot
2020-03-27 11:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-27  9:12 [binutils-gdb] Introduce generic_value_print_complex gdb-buildbot
2020-03-27  9:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-27  6:54 [binutils-gdb] Simplify generic_val_print_float gdb-buildbot
2020-03-27  6:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-27  4:59 [binutils-gdb] Introduce generic_value_print_char gdb-buildbot
2020-03-27  4:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-27  2:43 [binutils-gdb] Introduce generic_value_print_int gdb-buildbot
2020-03-27  2:43 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-27  0:56 [binutils-gdb] Introduce generic_value_print_bool gdb-buildbot
2020-03-27  0:56 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-26 22:46 [binutils-gdb] Simplify generic_val_print_func gdb-buildbot
2020-03-26 22:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-26 20:56 [binutils-gdb] Remove generic_val_print_flags gdb-buildbot
2020-03-26 20:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-26 18:28 [binutils-gdb] Fix generic_val_print_enum for value-based printing gdb-buildbot
2020-03-26 18:28 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-26 16:47 [binutils-gdb] Introduce generic_value_print_ptr gdb-buildbot
2020-03-26 16:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-26 14:07 [binutils-gdb] Initial rewrite of generic_value_print gdb-buildbot
2020-03-26 14:07 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-26 12:19 [binutils-gdb] Convert Pascal to value-based API gdb-buildbot
2020-03-26 12:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-26  8:08 [binutils-gdb] Convert Fortran printing to value-based API gdb-buildbot
2020-03-26  8:08 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-26  6:14 [binutils-gdb] Convert Modula-2 printing to value-based API gdb-buildbot
2020-03-26  6:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-26  2:22 [binutils-gdb] Convert Go printing to value-based API gdb-buildbot
2020-03-26  2:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-26  0:35 [binutils-gdb] Convert Rust printing to value-based API gdb-buildbot
2020-03-26  0:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-25 21:06 [binutils-gdb] Introduce ada_value_print_inner gdb-buildbot
2020-03-25 21:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-25 18:31 [binutils-gdb] Introduce f_value_print_innner gdb-buildbot
2020-03-25 18:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-25 16:43 [binutils-gdb] Introduce pascal_value_print_inner gdb-buildbot
2020-03-25 16:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-25 14:14 [binutils-gdb] Introduce m2_value_print_inner gdb-buildbot
2020-03-25 14:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-25 12:26 [binutils-gdb] Introduce c_value_print_inner gdb-buildbot
2020-03-25 12:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-25 10:31 [binutils-gdb] Make pascal_object_print_value_fields static gdb-buildbot
2020-03-25 10:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-25  8:18 [binutils-gdb] Simplify c_val_print_array gdb-buildbot
2020-03-25  8:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-25  6:32 [binutils-gdb] Introduce value_print_array_elements gdb-buildbot
2020-03-25  6:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-25  4:41 [binutils-gdb] Two simple uses of value_print_scalar_formatted gdb-buildbot
2020-03-25  4:41 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-25  2:33 [binutils-gdb] Introduce value_print_scalar_formatted gdb-buildbot
2020-03-25  2:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-25  0:45 [binutils-gdb] Introduce generic_value_print gdb-buildbot
2020-03-25  0:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-24 22:28 [binutils-gdb] Introduce la_value_print_inner gdb-buildbot
2020-03-24 22:28 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-24 20:04 [binutils-gdb] Use common_val_print in c-valprint.c gdb-buildbot
2020-03-24 20:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-24 14:16 [binutils-gdb] Use common_val_print in f-valprint.c gdb-buildbot
2020-03-24 14:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-24 12:24 [binutils-gdb] Use common_val_print in riscv-tdep.c gdb-buildbot
2020-03-24 12:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-24 10:09 [binutils-gdb] Use common_val_print in mi-main.c gdb-buildbot
2020-03-24 10:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-24  8:13 [binutils-gdb] Use common_val_print in infcmd.c gdb-buildbot
2020-03-24  8:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-24  6:13 [binutils-gdb] Introduce common_val_print_checked gdb-buildbot
2020-03-24  6:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-24  4:26 [binutils-gdb] Refactor val_print and common_val_print gdb-buildbot
2020-03-24  4:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-24  2:07 [binutils-gdb] Use scoped_value_mark in value_print gdb-buildbot
2020-03-24  2:07 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-24  0:20 [binutils-gdb] gdb/testsuite: Remove paths and make test names unique gdb-buildbot
2020-03-24  0:27 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-23 19:49 [binutils-gdb] Register NT_NETBSDCORE_AUXV (NetBSD-Core) gdb-buildbot
2020-03-23 19:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-23 17:59 [binutils-gdb] Add support for non-contiguous memory regions gdb-buildbot
2020-03-23 18:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-23 15:30 [binutils-gdb] x86: Check static link of dynamic objects gdb-buildbot
2020-03-23 15:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-23 11:33 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp matching FAILs (2) gdb-buildbot
2020-03-23 11:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-23  9:45 [binutils-gdb] Recognize aarch64 PT_GETREGS and PT_GETFPREGS notes on NetBSD gdb-buildbot
2020-03-23  9:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-23  3:28 [binutils-gdb] Fix several mix up between octets and bytes in ELF program headers gdb-buildbot
2020-03-23  3:28 ` Failures on Fedora-i686, 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-23  1:42 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-22 23:54 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp matching FAILs gdb-buildbot
2020-03-22 23:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-22 22:06 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL in gdb.tui/corefile-run.exp gdb-buildbot
2020-03-22 22:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-22 19:48 [binutils-gdb] Remove deprecated core file functions gdb-buildbot
2020-03-22 19:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-22 17:57 [binutils-gdb] Change gdbserver to use existing gdbsupport gdb-buildbot
2020-03-22 17:57 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-22 15:29 [binutils-gdb] Change gdbsupport not to rely on BFD gdb-buildbot
2020-03-22 15:29 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-22 13:43 [binutils-gdb] Fix gdbserver build when intl already built gdb-buildbot
2020-03-22 13:43 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-22 11:51 [binutils-gdb] Cast to bfd_vma in arm-tdep.c gdb-buildbot
2020-03-22 11:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-22 10:02 [binutils-gdb] Don't use sprintf_vma for CORE_ADDR gdb-buildbot
2020-03-22 10:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-22  8:15 [binutils-gdb] Fix CORE_ADDR size assertion in symfile-mem.c gdb-buildbot
2020-03-22  8:15 ` Failures on Fedora-i686, 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-22  6:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-22  4:09 [binutils-gdb] gdb: make gdb.arch/amd64-disp-step-avx.exp actually test displaced stepping gdb-buildbot
2020-03-22  4:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-22  2:23 [binutils-gdb] Move gdb/selftest.m4 to gdbsupport/selftest.m4 gdb-buildbot
2020-03-22  2:23 ` Failures on Fedora-i686, 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-22  0:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-21 22:48 [binutils-gdb] Move sourcing of development.sh to GDB_AC_COMMON gdb-buildbot
2020-03-21 22:49 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-21 18:48 [binutils-gdb] Remove use of deprecated core functions (in NetBSD/ARM) gdb-buildbot
2020-03-21 18:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-21 14:51 [binutils-gdb] sim: ppc: netbsd: Sync errno codes with NetBSD 9.99.49 gdb-buildbot
2020-03-21 14:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-21 10:50 [binutils-gdb] [gdb/testsuite] Avoid breakpoint in GLIBC in gdb.threads/execl.exp gdb-buildbot
2020-03-21 10:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-21  9:02 [binutils-gdb] [gdb/testsuite] Fix internal buffer full error in gdb.fortran/module.exp gdb-buildbot
2020-03-21  9:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-21  7:15 [binutils-gdb] [gdb/testsuite] Fix dw2-ranges-base.exp FAIL with lib debuginfo gdb-buildbot
2020-03-21  7:15 ` Failures on Fedora-i686, 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-21  5:30 ` Failures on Fedora-i686, 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-21  3:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-21  1:32 [binutils-gdb] [gdb/testsuite] Fix core file load FAIL in tls-core.exp gdb-buildbot
2020-03-21  1:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-20 23:23 [binutils-gdb] Avoid infinite recursion in find_pc_sect_line gdb-buildbot
2020-03-20 23:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-20 21:10 [binutils-gdb] testsuite: use `pwd -W` to convert from Unix to Windows paths gdb-buildbot
2020-03-20 21:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-20 18:59 [binutils-gdb] gdb: enable -Wmissing-prototypes warning gdb-buildbot
2020-03-20 18:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-20 17:08 [binutils-gdb] [gdb/testsuite] Set language in gdb.ada/minsym.exp gdb-buildbot
2020-03-20 17:13 ` Failures on Fedora-i686, 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-20 15:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-20 11:07 [binutils-gdb] [gdb/testsuite] Fix stepi pattern in gdb.btrace/reconnect.exp gdb-buildbot
2020-03-20 11:08 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-20  9:13 [binutils-gdb] Fix comment in ada-typeprint.c gdb-buildbot
2020-03-20  9:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-20  5:10 [binutils-gdb] [gdb/testsuite] Fix FAILs due to verbose in foll-fork.exp gdb-buildbot
2020-03-20  5:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-20  3:19 [binutils-gdb] [gdb/testsuite] Limit verbose scope in gdb.base/break-interp.exp gdb-buildbot
2020-03-20  3:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-20  0:54 [binutils-gdb] asan: som: unknown read gdb-buildbot
2020-03-20  0:54 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-19 22:11 [binutils-gdb] [gdb/testsuite] Fix missing uint8_t in gdb.fortran/logical.exp gdb-buildbot
2020-03-20  0:02 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-19 14:39 [binutils-gdb] [gdb/testsuite] Set EDITOR to true before using edit gdb-buildbot
2020-03-19 14:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-19 12:51 [binutils-gdb] libctf: Mark bswap_identity_64 inline function as static gdb-buildbot
2020-03-19 12:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-19  6:48 [binutils-gdb] gdb: Add support for tracking the DWARF line table is-stmt field gdb-buildbot
2020-03-19  6:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-19  2:47 [binutils-gdb] ubsan: som: left shift of 1 by 31 places gdb-buildbot
2020-03-19  2:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-19  1:00 [binutils-gdb] PR25648, objcopy SIGSEGV in ihex_write_record gdb-buildbot
2020-03-19  1:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-18 22:47 [binutils-gdb] x86: Also pass -P to $(CPP) when processing i386-opc.tbl gdb-buildbot
2020-03-18 22:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-18 20:59 [binutils-gdb] [gdb/testsuite] Fix tcl error in cached_file gdb-buildbot
2020-03-18 21:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-18 16:28 [binutils-gdb] x86: use template for XOP integer comparison, shift, and rotate insns gdb-buildbot
2020-03-18 16:28 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-18 14:40 [binutils-gdb] x86: use template for AVX/AVX512 floating point comparison insns gdb-buildbot
2020-03-18 14:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-18 12:19 [binutils-gdb] x86: use template for SSE floating point comparison insns gdb-buildbot
2020-03-18 12:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-18 10:31 [binutils-gdb] x86: allow opcode templates to be templated gdb-buildbot
2020-03-18 10:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-18  8:37 [binutils-gdb] asan: wasm: Out-of-memory gdb-buildbot
2020-03-18  8:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-17 21:13 [binutils-gdb] [gdb/testsuite] Fix testing build_executable result gdb-buildbot
2020-03-17 21:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-17 19:25 [binutils-gdb] [gdb] Support anonymous typedef generated by gcc -feliminate-dwarf2-dups gdb-buildbot
2020-03-17 19:28 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-17 17:06 [binutils-gdb] Remove some obsolete comments gdb-buildbot
2020-03-17 17:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-17 14:51 [binutils-gdb] Pass thread_info pointer to various inferior control functions gdb-buildbot
2020-03-17 14:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-17 13:03 [binutils-gdb] Don't try to get the TIB address without an inferior gdb-buildbot
2020-03-17 13:12 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-17 10:47 [binutils-gdb] [gdb/testsuite] Fix "text file busy" errors with cc-with-tweaks.exp gdb-buildbot
2020-03-17 10:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-17  8:51 [binutils-gdb] [gdb,testsuite,doc,NEWS] Fix "the the" gdb-buildbot
2020-03-17  8:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-17  4:48 [binutils-gdb] gdbserver/gdbsupport: Add .dir-locals.el file gdb-buildbot
2020-03-17  4:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-17  2:25 [binutils-gdb] Fix an abort triggered when objcopy is used to set the "share" section flag on an ELF section gdb-buildbot
2020-03-17  2:25 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-17  0:36 [binutils-gdb] x86: reduce amount of various VCVT* templates gdb-buildbot
2020-03-17  0:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-16 21:27 [binutils-gdb] x86: drop/replace IgnoreSize gdb-buildbot
2020-03-16 21:27 ` Failures on Fedora-i686, 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-16 20:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-16 18:49 [binutils-gdb] x86: replace NoRex64 on VEX-encoded insns gdb-buildbot
2020-03-16 18:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-16 16:33 [binutils-gdb] x86: drop Rex64 attribute gdb-buildbot
2020-03-16 16:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-16 14:43 [binutils-gdb] x86: correct MPX insn w/o base or index encoding in 16-bit mode gdb-buildbot
2020-03-16 14:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-16 10:23 [binutils-gdb] x86: refine TPAUSE and UMWAIT gdb-buildbot
2020-03-16 10:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-16  8:32 [binutils-gdb] bfd: xtensa: fix PR ld/25630 gdb-buildbot
2020-03-16  8:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-16  6:19 [binutils-gdb] Use std::string for 'psargs' gdb-buildbot
2020-03-16  6:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-16  4:30 [binutils-gdb] gdbsupport/configure.ac: source development.sh gdb-buildbot
2020-03-16  4:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-16  0:44 [binutils-gdb] gdb, gdbserver, gdbsupport: add .gitattributes files gdb-buildbot
2020-03-16  0:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-15 22:36 [binutils-gdb] [gdb/testsuite] Update maint.exp for string cache gdb-buildbot
2020-03-15 22:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-15 18:34 [binutils-gdb] Introduce objfile::intern gdb-buildbot
2020-03-15 18:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-15 16:46 [binutils-gdb] Make "gnutarget" const gdb-buildbot
2020-03-15 16:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-15 14:19 [binutils-gdb] Implement debugging of WOW64 processes gdb-buildbot
2020-03-15 14:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-15 10:43 [binutils-gdb] gdb.fortran: Allow Flang kind printing in fortran testing gdb-buildbot
2020-03-15 10:43 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-15  7:05 [binutils-gdb] sh_addralign inconsistent with sh_addr gdb-buildbot
2020-03-15  7:05 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-15  3:17 [binutils-gdb] Find tailcall frames before inline frames gdb-buildbot
2020-03-15  3:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-14 23:19 [binutils-gdb] x86: Replace IgnoreSize/DefaultSize with MnemonicSize gdb-buildbot
2020-03-14 23:19 ` Failures on Fedora-i686, 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-14 21:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-14 19:45 [binutils-gdb] Rebase executable to match relocated base address gdb-buildbot
2020-03-14 19:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-14 18:03 [binutils-gdb] The patch fixed invalid compilation of instruction LD IY, (HL) and disassemble of this and LD (HL), IX instruction. Also it update testsuit gdb-buildbot
2020-03-14 18:17 ` Failures on Fedora-i686, 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-14 16:07 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-14 12:06 [binutils-gdb] Update GDB to use new AUXV entry types gdb-buildbot
2020-03-14 12:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-14  8:26 [binutils-gdb] bfd_check_format_matches preserving matches vs. cleanups gdb-buildbot
2020-03-14  8:26 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-14  6:22 [binutils-gdb] [gdb/testsuite] Fix gdb.mi/gdb2549.exp with check-read1 gdb-buildbot
2020-03-14  6:22 ` Failures on Fedora-i686, 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-14  4:33 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-14  2:47 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp with check-read1 gdb-buildbot
2020-03-14  2:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-14  0:55 [binutils-gdb] Small clean up of use_displaced_stepping gdb-buildbot
2020-03-14  0:55 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-13 22:01 [binutils-gdb] gdb: Allow GDB to _not_ load a previous command history gdb-buildbot
2020-03-13 22:01 ` Failures on Fedora-i686, 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-13 20:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-13 18:10 [binutils-gdb] gdb/remote: Restore support for 'S' stop reply packet gdb-buildbot
2020-03-13 18:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-13 13:34 [binutils-gdb] [gdb/testsuite] Add -lbl option in gdb_test_multiple gdb-buildbot
2020-03-13 13:34 ` Failures on Fedora-i686, 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-13  7:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-13  5:52 [binutils-gdb] trad_unix_core_file_p: Return bfd_cleanup gdb-buildbot
2020-03-13  5:52 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-13  0:14 [binutils-gdb] miscellaneous SEC_SMALL_DATA gdb-buildbot
2020-03-13  0:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-12 22:22 [binutils-gdb] ELF SEC_SMALL_DATA gdb-buildbot
2020-03-12 22:27 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-12 19:09 [binutils-gdb] elf_backend_section_flags and _bfd_elf_init_private_section_data gdb-buildbot
2020-03-12 19:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-12 17:19 [binutils-gdb] alpha-coff: large memory allocation gdb-buildbot
2020-03-12 17:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-12 15:00 [binutils-gdb] alpha-vms: prevent endless recursion gdb-buildbot
2020-03-12 15:00 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-12 12:45 [binutils-gdb] alpha-vms: error paths not freeing memory and malloc result checks gdb-buildbot
2020-03-12 12:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-11 23:24 [binutils-gdb] Fix comment for 'gdb_dlopen' gdb-buildbot
2020-03-11 23:24 ` Failures on Fedora-i686, 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-11 21:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-11 19:08 [binutils-gdb] Fix gdb.arch/aarch64-dbreg-contents.exp build failures gdb-buildbot
2020-03-11 19:08 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-11 17:21 [binutils-gdb] [gdb] Don't set initial language using previous language gdb-buildbot
2020-03-11 17:21 ` Failures on Fedora-i686, 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-11 15:19 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-11 12:58 [binutils-gdb] [gdb/testsuite] Fix psymtab expansion postponement in c-linkage-name.exp gdb-buildbot
2020-03-11 12:58 ` Failures on Fedora-i686, 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-11 11:27 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-11  7:23 [binutils-gdb] alpha-vms: large memory allocation gdb-buildbot
2020-03-11  7:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-11  1:32 [binutils-gdb] mmix-mmo set SEC_DATA for .data section gdb-buildbot
2020-03-11  1:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-10 21:30 [binutils-gdb] gdb: Use std::abs instead of abs on LONGEST types gdb-buildbot
2020-03-10 21:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-10 17:14 [binutils-gdb] [gdb/testsuite] Fix spawn in tuiterm.exp gdb-buildbot
2020-03-10 17:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-10 15:25 [binutils-gdb] _bfd_xcoff_read_ar_hdr tidy gdb-buildbot
2020-03-10 15:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-10 13:06 [binutils-gdb] bfd_stat_arch_elt buffer overflow gdb-buildbot
2020-03-10 13:06 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-10  9:35 [binutils-gdb] Specialize partial_symtab for DWARF include files gdb-buildbot
2020-03-10  9:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-10  9:09 [binutils-gdb] Remove casts from dwarf2/index-write.c gdb-buildbot
2020-03-10  9:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-10  7:05 [binutils-gdb] Add debuginfod support to GDB gdb-buildbot
2020-03-10  7:05 ` Failures on Fedora-i686, 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-10  3:17 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-10  1:29 [binutils-gdb] [gdb] Don't set initial language if set manually gdb-buildbot
2020-03-10  1:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-09 23:11 [binutils-gdb] Archive sanity checks gdb-buildbot
2020-03-09 23:11 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-09 21:24 [binutils-gdb] Re: vms buffer overflows and large memory allocation gdb-buildbot
2020-03-09 21:36 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-09 14:58 [binutils-gdb] Indent labels gdb-buildbot
2020-03-09 14:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-09 13:09 [binutils-gdb] PR25593, --as-needed breaks DT_NEEDED order with linker plugin gdb-buildbot
2020-03-09 13:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-09 10:46 [binutils-gdb] Limit bogus archive parsed_size gdb-buildbot
2020-03-09 10:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-09  8:56 [binutils-gdb] Merge upstream GCC changes for include/ and libiberty/ directories gdb-buildbot
2020-03-09  8:56 ` Failures on Fedora-i686, 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-09  7:07 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-09  5:14 [binutils-gdb] [AArch64] Fix typo in comment gdb-buildbot
2020-03-09  5:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-09  3:14 [binutils-gdb] gdb/testsuite: Remove source file path from test name gdb-buildbot
2020-03-09  3:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-08 21:54 [binutils-gdb] [gdb/testsuite] Remove gcc/93866 xfail in methods.exp gdb-buildbot
2020-03-08 21:54 ` Failures on Fedora-i686, 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-08 20:07 ` Failures on Fedora-i686, 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-08 18:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-08 14:27 [binutils-gdb] Convert IS_TYPE_UNIT_GROUP to method gdb-buildbot
2020-03-08 14:27 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-08 12:39 [binutils-gdb] Simplify setting of reading_partial_symbols gdb-buildbot
2020-03-08 12:39 ` Failures on Fedora-i686, 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-08 10:45 ` Failures on Fedora-i686, 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  8:47 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-08  4:51 [binutils-gdb] vms buffer overflows and large memory allocation gdb-buildbot
2020-03-08  4:51 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-08  3:04 [binutils-gdb] gdb: update gnulib import gdb-buildbot
2020-03-08  3:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-08  1:16 [binutils-gdb] Make dwarf2_compile_expr_to_ax static gdb-buildbot
2020-03-08  1:16 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-07 23:21 [binutils-gdb] Fix cast in TUI_DISASM_WIN gdb-buildbot
2020-03-07 23:21 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-07 21:10 [binutils-gdb] Add "usage" text to all TUI command help gdb-buildbot
2020-03-07 21:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-07 19:22 [binutils-gdb] Use error_no_arg in TUI gdb-buildbot
2020-03-07 19:22 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-07 17:37 [binutils-gdb] Make some tui_source_window_base members "protected" gdb-buildbot
2020-03-07 17:37 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-07 15:39 [binutils-gdb] Allow TUI windows in Python gdb-buildbot
2020-03-07 15:39 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-07 10:04 [binutils-gdb] Remove tui_delete_invisible_windows and tui_make_all_invisible gdb-buildbot
2020-03-07 10:04 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-06 18:36 [binutils-gdb] Add the "tui new-layout" command gdb-buildbot
2020-03-06 18:46 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-06 17:09 [binutils-gdb] Remove hard-coded TUI layouts gdb-buildbot
2020-03-06 16:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-06 15:05 [binutils-gdb] Reimplement "tui reg" command gdb-buildbot
2020-03-06 15:07 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-06 12:45 [binutils-gdb] Reimplement TUI "C-x 1" binding gdb-buildbot
2020-03-06 12:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-06 10:32 [binutils-gdb] Simplify TUI C-x 2 binding gdb-buildbot
2020-03-06 11:20 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-06  6:39 [binutils-gdb] Simplify tui_add_win_to_layout gdb-buildbot
2020-03-06  7:12 ` Failures on Fedora-i686, 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  5:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-06  1:02 [binutils-gdb] Style field names in "print" gdb-buildbot
2020-03-06  1:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-05 16:53 [binutils-gdb] PR25585, PHDR segment not covered by LOAD segment gdb-buildbot
2020-03-05 17:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-05 13:39 [binutils-gdb] Add a mostlyclean target to gdbserver gdb-buildbot
2020-03-05 15:11 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-05 12:39 [binutils-gdb] Update partial_symtab comment gdb-buildbot
2020-03-05 12:56 ` Failures on Fedora-i686, 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 Fedora-i686, branch master gdb-buildbot
2020-03-05  1:24 [binutils-gdb] Check for null result from gdb_demangle gdb-buildbot
2020-03-05  3:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-04 22:59 [binutils-gdb] Fuzzers whining about mach-o support gdb-buildbot
2020-03-05  0:58 ` Failures on Fedora-i686, 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 21:21 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-04 15:09 [binutils-gdb] Make '{putchar,fputc}_unfiltered' use 'fputs_unfiltered' gdb-buildbot
2020-03-04 15:03 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-04 14:10 [binutils-gdb] RISC-V: Support the ISA-dependent CSR checking gdb-buildbot
2020-03-04 18:40 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-04 12:20 [binutils-gdb] PR25569, PDP11 ld -s clobbers last data byte gdb-buildbot
2020-03-04 16:45 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-04  7:35 [binutils-gdb] [gdb/testsuite] Fix hello.go xpass gdb-buildbot
2020-03-04 12:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-04  6:28 [binutils-gdb] gdbserver: turn target op 'get_ipa_tdesc_idx' into a method gdb-buildbot
2020-03-04  6:23 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-04  4:47 [binutils-gdb] gdbserver: finish turning the target ops vector into a class gdb-buildbot
2020-03-04 10:35 ` Failures on Fedora-i686, 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  8:31 ` Failures on Fedora-i686, 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-04  3:28 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-03 20:51 [binutils-gdb] gdbserver: turn target ops 'multifs_{open, readlink, unlink}' into methods gdb-buildbot
2020-03-03 20:46 ` Failures on Fedora-i686, 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-04  0:47 ` Failures on Fedora-i686, 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 23:35 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-03 10:31 [binutils-gdb] gdbserver: turn target op 'pid_to_exec_file' into a method gdb-buildbot
2020-03-03 19:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-03  5:38 [binutils-gdb] gdbserver: turn btrace-related target ops into methods gdb-buildbot
2020-03-03 15:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-03  3:18 [binutils-gdb] gdbserver: turn target op 'supports_agent' into a method gdb-buildbot
2020-03-03 13:18 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-03  1:30 [binutils-gdb] gdbserver: turn target ops 'pause_all' and 'unpause_all' into methods gdb-buildbot
2020-03-03  1:30 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-03  0:51 [binutils-gdb] gdbserver: turn target op 'qxfer_libraries_svr4' into a method gdb-buildbot
2020-03-03 10:58 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-02 23:38 [binutils-gdb] gdbserver: turn target op 'get_tib_address' into a method gdb-buildbot
2020-03-02 23:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-02 22:23 [binutils-gdb] gdbserver: turn target op 'supports_disable_randomization' into a method gdb-buildbot
2020-03-03  9:07 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-02 20:50 [binutils-gdb] gdbserver: turn target op 'emit_ops' into a method gdb-buildbot
2020-03-03  7:59 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-02 15:32 [binutils-gdb] gdbserver: turn target op 'stabilize_threads' into a method gdb-buildbot
2020-03-03  3:44 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-02 12:46 [binutils-gdb] gdbserver: turn target op 'read_loadmap' into a method gdb-buildbot
2020-03-02 12:42 ` Failures on Fedora-i686, 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 21:27 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-02  6:10 [binutils-gdb] gdbserver: turn target ops 'read_pc' and 'write_pc' into methods gdb-buildbot
2020-03-02 19:14 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-02  4:20 [binutils-gdb] gdbserver: turn target op 'supports_tracepoints' into a method gdb-buildbot
2020-03-02 17:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-02  3:25 [binutils-gdb] gdbserver: turn target op 'supports_multi_process' into a method gdb-buildbot
2020-03-02  3:25 ` Failures on Fedora-i686, 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-02  9:02 ` Failures on Fedora-i686, 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-02  6:48 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-01 15:43 [binutils-gdb] gdbserver: turn target op 'read_offsets' into a method gdb-buildbot
2020-03-01 15:32 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-01 13:59 [binutils-gdb] gdbserver: turn target ops 'supports_{fork,vfork,exec}_events' into methods gdb-buildbot
2020-03-02  5:11 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-01  8:22 [binutils-gdb] gdbserver: turn target op '{supports_}stopped_by_sw_breakpoint' into a method gdb-buildbot
2020-03-01  7:50 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-01  7:16 [binutils-gdb] gdbserver: turn target op 'qxfer_siginfo' into a method gdb-buildbot
2020-03-01 23:10 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-01  4:32 [binutils-gdb] gdbserver: turn target op 'qxfer_osdata' into a method gdb-buildbot
2020-03-01 21:12 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-03-01  2:58 [binutils-gdb] gdbserver: turn target op 'hostio_last_error' into a method gdb-buildbot
2020-03-01 19:09 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-02-29 23:58 [binutils-gdb] gdbserver: turn target op 'get_tls_address' into a method gdb-buildbot
2020-03-01 17:34 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-02-24  2:28 [binutils-gdb] Remove tui_set_win_with_focus gdb-buildbot
2020-03-07 14:20 ` Failures on Fedora-i686, 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).